https://github.com/EasyCrypt/easycrypt
Revision 844e61b8c62c08979f3c7589038313adc66449d7 authored by Pierre-Yves Strub on 15 January 2021, 08:11:01 UTC, committed by Pierre-Yves Strub on 15 January 2021, 08:11:01 UTC
1 parent bb0a97a
Raw File
Tip revision: 844e61b8c62c08979f3c7589038313adc66449d7 authored by Pierre-Yves Strub on 15 January 2021, 08:11:01 UTC
More results on dlet/dmap
Tip revision: 844e61b
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