https://github.com/EasyCrypt/easycrypt
Revision 97e5b1d8e3e95b6b0a5da13abbfa823f31ab7325 authored by Benjamin Gregoire on 10 July 2018, 22:33:36 UTC, committed by Benjamin Gregoire on 10 July 2018, 22:33:36 UTC
1 parent fecd089
Raw File
Tip revision: 97e5b1d8e3e95b6b0a5da13abbfa823f31ab7325 authored by Benjamin Gregoire on 10 July 2018, 22:33:36 UTC
fix error in"unroll for" tactic in case of hoare and phoare
Tip revision: 97e5b1d
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