https://github.com/EasyCrypt/easycrypt
Revision a62a90d9dea805ac80cbdfe713f9f149ebb7ef30 authored by Pierre-Yves Strub on 05 April 2021, 09:08:22 UTC, committed by Pierre-Yves Strub on 05 April 2021, 09:08:22 UTC
1 parent cf1eca8
Raw File
Tip revision: a62a90d9dea805ac80cbdfe713f9f149ebb7ef30 authored by Pierre-Yves Strub on 05 April 2021, 09:08:22 UTC
Stdlib: ring quotients
Tip revision: a62a90d
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