swh:1:snp:04e159a4411e97cbe416dcf21d082639f654120b
Raw File
Tip revision: bd8615e510babc4f8ccf5428461e294e9b8d557f authored by Pierre-Yves Strub on 13 January 2021, 15:01:12 UTC
Tip revision: bd8615e
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