https://github.com/EasyCrypt/easycrypt
Revision b28b52211c24086b8935a56a3445969f83f06665 authored by Pierre-Yves Strub on 20 November 2020, 12:57:44 UTC, committed by Pierre-Yves Strub on 20 November 2020, 12:57:44 UTC
2 parent s b41cd3b + 13dedd4
Raw File
Tip revision: b28b52211c24086b8935a56a3445969f83f06665 authored by Pierre-Yves Strub on 20 November 2020, 12:57:44 UTC
Merge branch 'deploy-stdlib' into deploy-sem
Tip revision: b28b522
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