summaryrefslogtreecommitdiffstats
path: root/pkgs/development/coq-modules/mathcomp/1.5.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/coq-modules/mathcomp/1.5.nix')
-rw-r--r--pkgs/development/coq-modules/mathcomp/1.5.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/development/coq-modules/mathcomp/1.5.nix b/pkgs/development/coq-modules/mathcomp/1.5.nix
deleted file mode 100644
index c984bab49171..000000000000
--- a/pkgs/development/coq-modules/mathcomp/1.5.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{stdenv, fetchurl, coq, ssreflect}:
-
-stdenv.mkDerivation {
-
- name = "coq-mathcomp-1.5-8.5b2";
-
- src = fetchurl {
- url = http://ssr.msr-inria.inria.fr/FTP/mathcomp-1.5.coq85beta2.tar.gz;
- sha256 = "03bnq44ym43x8shi7whc02l0g5vy6rx8f1imjw478chlgwcxazqy";
- };
-
- propagatedBuildInputs = [ coq ssreflect ];
-
- enableParallelBuilding = true;
-
- installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/";
-
- meta = with stdenv.lib; {
- homepage = http://ssr.msr-inria.inria.fr/;
- license = licenses.cecill-b;
- maintainers = [ maintainers.vbgl maintainers.jwiegley ];
- platforms = coq.meta.platforms;
- hydraPlatforms = [];
- };
-
-}