https://github.com/EasyCrypt/easycrypt
Revision 6feb5d7ba50f895e021a3d313fe2f9bbc4aa23dd authored by Benjamin Gregoire on 05 January 2021, 11:47:23 UTC, committed by Benjamin Gregoire on 05 January 2021, 11:47:23 UTC
1 parent 999561c
Raw File
Tip revision: 6feb5d7ba50f895e021a3d313fe2f9bbc4aa23dd authored by Benjamin Gregoire on 05 January 2021, 11:47:23 UTC
fix quadratic behavior of ecCallbyValue
Tip revision: 6feb5d7
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