https://github.com/EasyCrypt/easycrypt
Revision 81bd4acc2bcb0e3581c4c28178ee41efbdf26b21 authored by Pierre Boutry on 15 June 2021, 12:20:18 UTC, committed by Christian Doczkal on 03 December 2021, 13:59:52 UTC
1 parent 210ab7a
Raw File
Tip revision: 81bd4acc2bcb0e3581c4c28178ee41efbdf26b21 authored by Pierre Boutry on 15 June 2021, 12:20:18 UTC
inline some lemmas
Tip revision: 81bd4ac
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