Revision fcdfcbdcc4f39e6568e1c77befe24713f5c55091 authored by Pierre-Yves Strub on 21 November 2020, 12:11:49 UTC, committed by Pierre-Yves Strub on 21 November 2020, 12:11:49 UTC
1 parent a08bc34
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