https://github.com/EasyCrypt/easycrypt
Revision 0b1128e6f54e115af7eadf6de1e34bdd31243632 authored by Benjamin Gregoire on 10 December 2019, 12:38:29 UTC, committed by Benjamin Gregoire on 10 December 2019, 12:38:29 UTC
1 parent babbac3
Raw File
Tip revision: 0b1128e6f54e115af7eadf6de1e34bdd31243632 authored by Benjamin Gregoire on 10 December 2019, 12:38:29 UTC
add lemma in "random" database
Tip revision: 0b1128e
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild batteries menhir merlin zarith inifiles why3 yojson])
    ;
}
back to top