Revision 19c6c50934095250a4d5a4efc2d6b167ec574a82 authored by Benjamin Gregoire on 10 June 2020, 07:45:48 UTC, committed by Benjamin Gregoire on 10 June 2020, 07:47:46 UTC
1 parent 6965ea6
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