https://github.com/EasyCrypt/easycrypt
Revision 1aab7a846991d939e3a6f6b64f3f201333f08ecd authored by Pierre-Yves Strub on 05 April 2021, 06:42:55 UTC, committed by Pierre-Yves Strub on 05 April 2021, 06:42:55 UTC
1 parent 2a8554f
Raw File
Tip revision: 1aab7a846991d939e3a6f6b64f3f201333f08ecd authored by Pierre-Yves Strub on 05 April 2021, 06:42:55 UTC
Quotient: use std def. of eqv relation
Tip revision: 1aab7a8
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