swh:1:snp:deb9fd355bffe3d96f042bd4e5113afbb0d7cbb2
Raw File
Tip revision: ff849a2f62671ed23b0a970893bcc1d59db46da4 authored by Manuel Barbosa on 10 April 2021, 14:20:54 UTC
Fundamental lemma
Tip revision: ff849a2
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