https://github.com/EasyCrypt/easycrypt
Revision 999561c13567944edf2036773d9b6e5b5ddba556 authored by Pierre-Yves Strub on 04 January 2021, 13:24:41 UTC, committed by Pierre-Yves Strub on 04 January 2021, 13:24:41 UTC
1 parent f4f3f94
Raw File
Tip revision: 999561c13567944edf2036773d9b6e5b5ddba556 authored by Pierre-Yves Strub on 04 January 2021, 13:24:41 UTC
remove deprecated "cut" tactic
Tip revision: 999561c
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