https://github.com/EasyCrypt/easycrypt
Revision 94786bc3f1675b105c4028fc89bfc9478ce3b091 authored by Pierre-Yves Strub on 16 April 2020, 09:40:44 UTC, committed by Pierre-Yves Strub on 16 April 2020, 09:40:44 UTC
1 parent 136b237
Raw File
Tip revision: 94786bc3f1675b105c4028fc89bfc9478ce3b091 authored by Pierre-Yves Strub on 16 April 2020, 09:40:44 UTC
stdlib: List: nth_default
Tip revision: 94786bc
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