coqPackages_8_4.fiat: remove

This commit is contained in:
Vincent Laporte 2017-12-02 08:46:16 +00:00
parent 13573cf129
commit 5a043e24da
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 0 additions and 43 deletions

View file

@ -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;
};
}

View file

@ -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 {};