https://github.com/EasyCrypt/easycrypt
Revision fa4d0e4899954c3b2679a680fd25682631ce123d authored by Adrien Koutsos on 23 March 2020, 09:01:10 UTC, committed by Adrien Koutsos on 23 March 2020, 09:01:10 UTC
1 parent 29fd288
Raw File
Tip revision: fa4d0e4899954c3b2679a680fd25682631ce123d authored by Adrien Koutsos on 23 March 2020, 09:01:10 UTC
small cleanup
Tip revision: fa4d0e4
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