Revision de5cd4a7f14717348aeb62a082d2692cebd074ff authored by Pierre-Yves Strub on 13 July 2018, 10:56:47 UTC, committed by Pierre-Yves Strub on 13 July 2018, 10:57:06 UTC
    Syntax is : codepos1 [.?] codepos1 [.?] ... [.?] codepos1

    where codepos1 is of the form basepos [+-] offset and basepos
    is either an absolute position or of the form ^kw{n} where
    kw is amon if, while, <-, <@, <$ and {n} (which is optional)
    is a signed integer.
1 parent 71f975a
Raw File
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