https://github.com/EasyCrypt/easycrypt
Revision 136b237dc87dadd94605827b30064c37fff1ef99 authored by Pierre-Yves Strub on 15 April 2020, 09:39:30 UTC, committed by Pierre-Yves Strub on 15 April 2020, 09:39:30 UTC
1 parent 5eba66b
Raw File
Tip revision: 136b237dc87dadd94605827b30064c37fff1ef99 authored by Pierre-Yves Strub on 15 April 2020, 09:39:30 UTC
lemma: fun_ext2
Tip revision: 136b237
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])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top