https://github.com/EasyCrypt/easycrypt
Revision 5e9f9559efe9cb643cf616327c060f980c544953 authored by Pierre-Yves Strub on 26 March 2019, 10:46:03 UTC, committed by Pierre-Yves Strub on 26 March 2019, 10:46:03 UTC
1 parent 8a0c097
Raw File
Tip revision: 5e9f9559efe9cb643cf616327c060f980c544953 authored by Pierre-Yves Strub on 26 March 2019, 10:46:03 UTC
Extend matching (projections)
Tip revision: 5e9f955
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