https://github.com/EasyCrypt/easycrypt
Revision 050cadab4aa4cf66675ce317d9ad7af7b739b1c2 authored by Pierre-Yves Strub on 18 December 2019, 09:13:35 UTC, committed by Pierre-Yves Strub on 18 December 2019, 09:52:45 UTC
1 parent 1ec24f8
Raw File
Tip revision: 050cadab4aa4cf66675ce317d9ad7af7b739b1c2 authored by Pierre-Yves Strub on 18 December 2019, 09:13:35 UTC
Remove dead code in 't_solve'
Tip revision: 050cada
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild batteries menhir merlin zarith inifiles why3 yojson])
    ;
}
back to top