https://github.com/EasyCrypt/easycrypt
Revision f4debca57d022d0dbdbe65970a6f700a30324c1b authored by Pierre-Yves Strub on 24 February 2021, 21:37:09 UTC, committed by Pierre-Yves Strub on 24 February 2021, 21:37:09 UTC
1 parent 7a60dcc
Raw File
Tip revision: f4debca57d022d0dbdbe65970a6f700a30324c1b authored by Pierre-Yves Strub on 24 February 2021, 21:37:09 UTC
stdlib: more results on dfun
Tip revision: f4debca
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