https://github.com/EasyCrypt/easycrypt
Revision e9780dcb2e769a34feaeeb3ac461b5eec64c411a authored by Pierre-Yves Strub on 22 November 2019, 06:46:21 UTC, committed by Pierre-Yves Strub on 22 November 2019, 06:46:21 UTC
1 parent 67e2821
Raw File
Tip revision: e9780dcb2e769a34feaeeb3ac461b5eec64c411a authored by Pierre-Yves Strub on 22 November 2019, 06:46:21 UTC
zmod-cyclic
Tip revision: e9780dc
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