https://github.com/EasyCrypt/easycrypt
Revision e7ca0522f5389ed9cc8d309dd7ca640cd9c4463b authored by Benjamin Gregoire on 02 December 2020, 15:08:03 UTC, committed by Benjamin Gregoire on 02 December 2020, 15:08:03 UTC
1 parent 93748b3
Raw File
Tip revision: e7ca0522f5389ed9cc8d309dd7ca640cd9c4463b authored by Benjamin Gregoire on 02 December 2020, 15:08:03 UTC
stack based conversion
Tip revision: e7ca052
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