Revision d2e05373f91722db44fc8c0fa1cec531a47c440f authored by Benjamin Gregoire on 25 February 2021, 10:29:19 UTC, committed by Benjamin Gregoire on 25 February 2021, 10:29:19 UTC
1 parent b2bc4e8
Raw File
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