https://github.com/EasyCrypt/easycrypt
Revision 48823794c128d87cdac83fc49629a7f5a1cd61de authored by Pierre-Yves Strub on 15 April 2020, 08:28:48 UTC, committed by Pierre-Yves Strub on 15 April 2020, 08:28:48 UTC
1 parent 64d592d
Raw File
Tip revision: 48823794c128d87cdac83fc49629a7f5a1cd61de authored by Pierre-Yves Strub on 15 April 2020, 08:28:48 UTC
views: allow application of induction principle as a view
Tip revision: 4882379
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