https://github.com/EasyCrypt/easycrypt
Revision dfe37eb16afff9150b029ccf1d8439856d9c122d authored by Cécile BARITEL-RUET on 17 December 2018, 14:32:33 UTC, committed by Cécile BARITEL-RUET on 17 December 2018, 14:32:33 UTC
1 parent ed7bf6c
Raw File
Tip revision: dfe37eb16afff9150b029ccf1d8439856d9c122d authored by Cécile BARITEL-RUET on 17 December 2018, 14:32:33 UTC
fix bug where the type of pred1 was bool instead of 'a -> bool
Tip revision: dfe37eb
default.nix
with import <nixpkgs> {};

let why3_for_ec = stdenv.lib.overrideDerivation why3 (o: {
  name = "why3-0.87.3";
  src = fetchurl {
    url = "https://gforge.inria.fr/frs/download.php/file/36398/why3-0.87.3.tar.gz";
    sha256 = "1fn9v6w1ilkrm2n4rz31w8qvjnchyvwxiqs67z3f59b5k99wb2ka";
  };
});
in

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild batteries menhir merlin zarith inifiles why3_for_ec ])
    ;
}
back to top