https://github.com/EasyCrypt/easycrypt
Revision 799d4293f9d39e3f4784dea0da304e67eea44b4d authored by Christian Doczkal on 08 December 2021, 12:53:47 UTC, committed by Pierre-Yves Strub on 08 December 2021, 13:26:16 UTC
1 parent 8e47fe3
Raw File
Tip revision: 799d4293f9d39e3f4784dea0da304e67eea44b4d authored by Christian Doczkal on 08 December 2021, 12:53:47 UTC
add lemma RO_LRO and generalize RO_FinRO_D
Tip revision: 799d429
default.nix
with import <nixpkgs> {};

if !lib.versionAtLeast why3.version "1.4" then
  throw "please update your nixpkgs channel: nix-channel --update"
else
  stdenv.mkDerivation {
    name = "easycrypt-1.0";
    src = ./.;
    buildInputs = [ why3 ] ++ (with ocamlPackages; [
      ocaml
      findlib
      batteries
      dune_2
      dune-build-info
      dune-site
      inifiles
      menhir
      menhirLib
      merlin
      yojson
      zarith
    ]);
    installFlags = [ "PREFIX=$(out)" ];
  }
back to top