Revision ff849a2f62671ed23b0a970893bcc1d59db46da4 authored by Manuel Barbosa on 10 April 2021, 14:20:54 UTC, committed by Manuel Barbosa on 10 April 2021, 14:20:54 UTC
1 parent 7c1d65d
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