https://github.com/EasyCrypt/easycrypt
Revision ed25190a094a43f1f468eff6cda1ba3d1ab03e93 authored by Benjamin Gregoire on 16 November 2020, 10:58:31 UTC, committed by Benjamin Gregoire on 16 November 2020, 10:58:31 UTC
1 parent 8cb3e88
Raw File
Tip revision: ed25190a094a43f1f468eff6cda1ba3d1ab03e93 authored by Benjamin Gregoire on 16 November 2020, 10:58:31 UTC
small generalization of PRP
Tip revision: ed25190
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