https://github.com/EasyCrypt/easycrypt
Revision 886a29fb83be4344e19cac34269613efa8ac29ea authored by François Dupressoir on 22 November 2019, 13:54:33 UTC, committed by François Dupressoir on 25 November 2019, 10:43:34 UTC
1 parent fc4989a
Raw File
Tip revision: 886a29fb83be4344e19cac34269613efa8ac29ea authored by François Dupressoir on 22 November 2019, 13:54:33 UTC
fiddling
Tip revision: 886a29f
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