https://github.com/EasyCrypt/easycrypt
Revision b66875f17274d07507e071ebf1feb3eb83e4a7cc authored by Cyril Cohen on 08 April 2020, 15:21:04 UTC, committed by Benjamin Gregoire on 30 April 2020, 10:29:13 UTC
1 parent 9c29f3f
Raw File
Tip revision: b66875f17274d07507e071ebf1feb3eb83e4a7cc authored by Cyril Cohen on 08 April 2020, 15:21:04 UTC
default.nix: adding installFlags
Tip revision: b66875f
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild batteries menhir merlin zarith inifiles why3 yojson])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top