https://github.com/EasyCrypt/easycrypt
Revision c750a581c3305c0d4c7a27205f9922ec3077de7b authored by François Dupressoir on 20 May 2021, 09:59:20 UTC, committed by François Dupressoir on 20 May 2021, 09:59:20 UTC
1 parent 82fd774
Raw File
Tip revision: c750a581c3305c0d4c7a27205f9922ec3077de7b authored by François Dupressoir on 20 May 2021, 09:59:20 UTC
FinType.FinType → FinType
Tip revision: c750a58
default.nix
with import <nixpkgs> {};

let why314 = why3.overrideAttrs (x:
   { name = "why3.14";
     src = fetchurl {
       url = "https://gforge.inria.fr/frs/download.php/file/38425/why3-1.4.0.tar.gz";
       sha256 = "0lw0cpx347zz9vvwqibmbxgs80fsd16scgk3isscvwxnajpc3rv8";
      };
     postPatch = "";
   }); in

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild (batteries.overrideAttrs (o: { doCheck = false; })) menhir merlin zarith inifiles why314 yojson])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top