Revision f5ea5b3ce1966a2773196e3994feca50264cb663 authored by Francois Dupressoir on 17 March 2021, 15:55:39 UTC, committed by GitHub on 17 March 2021, 15:55:39 UTC
Not that this will be valid very long...
1 parent 4818c2e
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