https://github.com/EasyCrypt/easycrypt
Revision 2afb775be1173eb4ff8aae7993277d0652575273 authored by Pierre-Yves Strub on 14 April 2021, 15:27:25 UTC, committed by Pierre-Yves Strub on 14 April 2021, 15:27:25 UTC
1 parent 5df6a6f
Raw File
Tip revision: 2afb775be1173eb4ff8aae7993277d0652575273 authored by Pierre-Yves Strub on 14 April 2021, 15:27:25 UTC
StdLib: funi + same weight => eq
Tip revision: 2afb775
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