https://github.com/EasyCrypt/easycrypt
Revision 81f358d7a730ccd8c1ecc387bd7127f3d4c42141 authored by Pierre-Yves Strub on 10 April 2021, 10:47:47 UTC, committed by Pierre-Yves Strub on 10 April 2021, 10:47:47 UTC
1 parent 639a76e
Raw File
Tip revision: 81f358d7a730ccd8c1ecc387bd7127f3d4c42141 authored by Pierre-Yves Strub on 10 April 2021, 10:47:47 UTC
StdLib: polynomials distributions
Tip revision: 81f358d
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