https://github.com/EasyCrypt/easycrypt
Revision 74207ab65511c7b0e70ca1d97106bb3b0acd67f6 authored by Pierre-Yves Strub on 14 October 2019, 15:22:16 UTC, committed by Pierre-Yves Strub on 14 October 2019, 15:22:16 UTC
1 parent e023995
Raw File
Tip revision: 74207ab65511c7b0e70ca1d97106bb3b0acd67f6 authored by Pierre-Yves Strub on 14 October 2019, 15:22:16 UTC
Remove debugging infos
Tip revision: 74207ab
default.nix
with import <nixpkgs> {};

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