https://github.com/EasyCrypt/easycrypt
Revision 7a4248442762eb750cac5b05e206b5976403ce8d authored by Pierre-Yves Strub on 21 November 2020, 00:14:50 UTC, committed by Pierre-Yves Strub on 21 November 2020, 00:14:50 UTC
1 parent 07b937c
Raw File
Tip revision: 7a4248442762eb750cac5b05e206b5976403ce8d authored by Pierre-Yves Strub on 21 November 2020, 00:14:50 UTC
MANIFEST
Tip revision: 7a42484
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