Revision 2363562c222df55e5845f42f617bc5a3c17c6c87 authored by Benjamin Gregoire on 24 November 2020, 19:47:13 UTC, committed by Benjamin Gregoire on 24 November 2020, 19:47:13 UTC
1 parent 6857723
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