https://github.com/EasyCrypt/easycrypt
Revision fa3853d3029de6ca6ab2f7027806ca0a84d7394f authored by Pierre-Yves Strub on 15 October 2020, 10:30:04 UTC, committed by Pierre-Yves Strub on 15 October 2020, 10:30:04 UTC
1 parent bc4f6df
Raw File
Tip revision: fa3853d3029de6ca6ab2f7027806ca0a84d7394f authored by Pierre-Yves Strub on 15 October 2020, 10:30:04 UTC
README (nix)
Tip revision: fa3853d
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild (batteries.overrideAttrs (o: { doCheck = false; })) menhir merlin zarith inifiles why3 yojson])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top