https://github.com/EasyCrypt/easycrypt
Revision de2158b343d91670767ef0fc9ab566218497a41a authored by Pierre-Yves Strub on 07 April 2021, 12:32:34 UTC, committed by Pierre-Yves Strub on 07 April 2021, 12:32:34 UTC
1 parent a62a90d
Raw File
Tip revision: de2158b343d91670767ef0fc9ab566218497a41a authored by Pierre-Yves Strub on 07 April 2021, 12:32:34 UTC
Poly.ec -> Poly.eca
Tip revision: de2158b
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