https://github.com/EasyCrypt/easycrypt
Revision edd02d094efcc52a75bb89ebabace7f7455a9d1d authored by François Dupressoir on 18 May 2021, 22:22:35 UTC, committed by François Dupressoir on 18 May 2021, 22:22:47 UTC
He has risen!

Authored by Benjamin Grégoire and Cécile Baritel-Ruet.

Co-Authored-By: Benjamin Grégoire <benjamin.gregoire@inria.fr>
Co-Authored-By: Cécile Baritel-Ruet <cecile.baritel-ruet@inria.fr>
1 parent 8774376
Raw File
Tip revision: edd02d094efcc52a75bb89ebabace7f7455a9d1d authored by François Dupressoir on 18 May 2021, 22:22:35 UTC
ChaCha-Poly x Easter
Tip revision: edd02d0
default.nix
with import <nixpkgs> {};

let why314 = why3.overrideAttrs (x:
   { name = "why3.14";
     src = fetchurl {
       url = "https://gforge.inria.fr/frs/download.php/file/38425/why3-1.4.0.tar.gz";
       sha256 = "0lw0cpx347zz9vvwqibmbxgs80fsd16scgk3isscvwxnajpc3rv8";
      };
     postPatch = "";
   }); in

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild (batteries.overrideAttrs (o: { doCheck = false; })) menhir merlin zarith inifiles why314 yojson])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top