summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-12-02 08:46:16 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-12-02 08:46:16 +0000
commit5a043e24da53a587e29ceb3ce6c6d4a66c6ea83a (patch)
tree5c441dd655bf7105a6d7231e0b14bfc53b5155fe /pkgs
parent13573cf129781de8d1bfa5a0ff2af9af0d55b30b (diff)
downloadnixlib-5a043e24da53a587e29ceb3ce6c6d4a66c6ea83a.tar
nixlib-5a043e24da53a587e29ceb3ce6c6d4a66c6ea83a.tar.gz
nixlib-5a043e24da53a587e29ceb3ce6c6d4a66c6ea83a.tar.bz2
nixlib-5a043e24da53a587e29ceb3ce6c6d4a66c6ea83a.tar.lz
nixlib-5a043e24da53a587e29ceb3ce6c6d4a66c6ea83a.tar.xz
nixlib-5a043e24da53a587e29ceb3ce6c6d4a66c6ea83a.tar.zst
nixlib-5a043e24da53a587e29ceb3ce6c6d4a66c6ea83a.zip
coqPackages_8_4.fiat: remove
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/coq-modules/fiat/default.nix41
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/development/coq-modules/fiat/default.nix b/pkgs/development/coq-modules/fiat/default.nix
deleted file mode 100644
index e084497cbf81..000000000000
--- a/pkgs/development/coq-modules/fiat/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{stdenv, fetchurl, coq}:
-
-stdenv.mkDerivation rec {
-
-  name = "coq-fiat-${coq.coq-version}-${version}";
-  version = "20141031";
-
-  src = fetchurl {
-    url = "http://plv.csail.mit.edu/fiat/releases/fiat-${version}.tar.gz";
-    sha256 = "0c5jrcgbpdj0gfzg2q4naqw7frf0xxs1f451fnic6airvpaj0d55";
-  };
-
-  buildInputs = [ coq.ocaml coq.camlp5 ];
-  propagatedBuildInputs = [ coq ];
-
-  enableParallelBuilding = false;
-  doCheck = !stdenv.isi686;
-
-  unpackPhase = ''
-    mkdir fiat
-    cd fiat
-    tar xvzf ${src}
-  '';
-
-  buildPhase = "make -j$NIX_BUILD_CORES sources";
-  checkPhase = "make -j$NIX_BUILD_CORES examples";
-
-  installPhase = ''
-    COQLIB=$out/lib/coq/${coq.coq-version}/
-    mkdir -p $COQLIB/user-contrib/Fiat
-    cp -pR src/* $COQLIB/user-contrib/Fiat
-  '';
-
-  meta = with stdenv.lib; {
-    homepage = http://plv.csail.mit.edu/fiat/;
-    description = "A library for the Coq proof assistant for synthesizing efficient correct-by-construction programs from declarative specifications";
-    maintainers = with maintainers; [ jwiegley ];
-    platforms = coq.meta.platforms;
-  };
-
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 17303985925d..be948731275d 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -18806,8 +18806,6 @@ with pkgs;
       in
         recurseIntoAttrs contribs;
 
-    fiat = callPackage ../development/coq-modules/fiat {};
-    fiat_HEAD = callPackage ../development/coq-modules/fiat/HEAD.nix {};
     flocq = callPackage ../development/coq-modules/flocq {};
     heq = callPackage ../development/coq-modules/heq {};
     interval = callPackage ../development/coq-modules/interval {};