https://github.com/EasyCrypt/easycrypt
Revision 182e4a9cc46f37a8411b02003ae25901b1de3f30 authored by François Dupressoir on 12 May 2020, 13:59:20 UTC, committed by François Dupressoir on 12 May 2020, 13:59:20 UTC
1 parent 4cecda9
Raw File
Tip revision: 182e4a9cc46f37a8411b02003ae25901b1de3f30 authored by François Dupressoir on 12 May 2020, 13:59:20 UTC
Fix example
Tip revision: 182e4a9
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