https://github.com/EasyCrypt/easycrypt
Revision 8d01a80a33d7fbdc7dce29bce52de59a8ae2af4d authored by Benjamin Gregoire on 17 November 2020, 17:48:08 UTC, committed by Benjamin Gregoire on 17 November 2020, 17:48:08 UTC
1 parent ed25190
Raw File
Tip revision: 8d01a80a33d7fbdc7dce29bce52de59a8ae2af4d authored by Benjamin Gregoire on 17 November 2020, 17:48:08 UTC
fix CBC
Tip revision: 8d01a80
default.nix
with import <nixpkgs> {};

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