https://github.com/EasyCrypt/easycrypt
Revision 5583bca930e5c133b5de4e3498d54af79e1ac4db authored by Benjamin Gregoire on 12 January 2021, 14:15:46 UTC, committed by Benjamin Gregoire on 12 January 2021, 14:15:46 UTC
1 parent 6feb5d7
Raw File
Tip revision: 5583bca930e5c133b5de4e3498d54af79e1ac4db authored by Benjamin Gregoire on 12 January 2021, 14:15:46 UTC
pragma -oldip become the default
Tip revision: 5583bca
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