Revision 1313a7da71c6007248cdb9ac2cb0401946b9d72d authored by François Dupressoir on 14 April 2021, 18:20:13 UTC, committed by François Dupressoir on 14 April 2021, 18:20:13 UTC
2 parent s 49d7ad3 + 2afb775
Raw File
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