Revision 708e88c59dc2c2c0cce9d3758abd65e74b42807e authored by Pierre-Yves Strub on 16 January 2021, 08:38:18 UTC, committed by Pierre-Yves Strub on 16 January 2021, 08:38:18 UTC
1 parent 9dcb1a4
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