https://github.com/EasyCrypt/easycrypt
Revision b2bc4e8988b7e84cacfb3b559b91a255e7b62777 authored by Benjamin Gregoire on 25 February 2021, 03:37:03 UTC, committed by Benjamin Gregoire on 25 February 2021, 03:37:03 UTC
1 parent e0e995f
Raw File
Tip revision: b2bc4e8988b7e84cacfb3b559b91a255e7b62777 authored by Benjamin Gregoire on 25 February 2021, 03:37:03 UTC
add lemma dfun_ll
Tip revision: b2bc4e8
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