https://github.com/EasyCrypt/easycrypt
Revision 20646173f2ec66a6e090e92488d89629f7679c1a authored by Pierre-Yves Strub on 10 June 2020, 07:28:45 UTC, committed by Pierre-Yves Strub on 10 June 2020, 07:28:49 UTC
1 parent 763732a
Raw File
Tip revision: 20646173f2ec66a6e090e92488d89629f7679c1a authored by Pierre-Yves Strub on 10 June 2020, 07:28:45 UTC
"search" now works with notations
Tip revision: 2064617
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