https://github.com/EasyCrypt/easycrypt
Revision 4818c2e87ad16c5d96587a63912cb840dbfc6c19 authored by Francois Dupressoir on 17 March 2021, 14:04:26 UTC, committed by GitHub on 17 March 2021, 14:04:26 UTC
1 parent ddb426b
Raw File
Tip revision: 4818c2e87ad16c5d96587a63912cb840dbfc6c19 authored by Francois Dupressoir on 17 March 2021, 14:04:26 UTC
Document why3/prover version interactions
Tip revision: 4818c2e
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