https://github.com/EasyCrypt/easycrypt
Revision ddb426b596c97417989ff28cf3f382649caee4af authored by Alley Stoughton on 16 March 2021, 16:39:12 UTC, committed by Alley Stoughton on 16 March 2021, 16:39:12 UTC
1 parent c19a2a7
Raw File
Tip revision: ddb426b596c97417989ff28cf3f382649caee4af authored by Alley Stoughton on 16 March 2021, 16:39:12 UTC
Removing dead code.
Tip revision: ddb426b
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