Revision 5df6a6f2a52440dcad2d1b6c3eb5e20f9a71ad18 authored by Pierre-Yves Strub on 13 April 2021, 13:34:33 UTC, committed by Pierre-Yves Strub on 13 April 2021, 13:34:33 UTC
1 parent 1b25ed4
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