Revision 7a4c6d1fbeebde8f29b847cabacbc6898f8cd6a0 authored by Pierre-Yves Strub on 05 April 2021, 09:08:22 UTC, committed by Pierre-Yves Strub on 06 April 2021, 05:28:48 UTC
1 parent e8e4349
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