https://github.com/EasyCrypt/easycrypt
Revision ea13c71abee15eabb09ab0de80139ea0e7cdf626 authored by Benjamin Gregoire on 27 November 2020, 16:46:54 UTC, committed by Benjamin Gregoire on 27 November 2020, 16:46:54 UTC
1 parent 2363562
Raw File
Tip revision: ea13c71abee15eabb09ab0de80139ea0e7cdf626 authored by Benjamin Gregoire on 27 November 2020, 16:46:54 UTC
simplify t_split
Tip revision: ea13c71
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