https://github.com/EasyCrypt/easycrypt
Revision 0d55fac6a88ba3c22eb7ed09be1e85ceb220159c authored by Alley Stoughton on 04 April 2021, 17:25:21 UTC, committed by Alley Stoughton on 04 April 2021, 17:25:21 UTC
2 parent s bb6d218 + 748c9ef
Raw File
Tip revision: 0d55fac6a88ba3c22eb7ed09be1e85ceb220159c authored by Alley Stoughton on 04 April 2021, 17:25:21 UTC
Merge branch '1.0' into aprhl
Tip revision: 0d55fac
default.nix
with import <nixpkgs> {};

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