Files
nixpkgs/pkgs/development/lean-modules/aesop/default.nix

30 lines
622 B
Nix

{
lib,
buildLakePackage,
fetchFromGitHub,
batteries,
}:
buildLakePackage {
pname = "lean4-aesop";
# nixpkgs-update: no auto update
version = "4.30.0";
src = fetchFromGitHub {
owner = "leanprover-community";
repo = "aesop";
tag = "v4.30.0";
hash = "sha256-7PhQVMdiYImuzRYdf0Kgw3JYS4nBLfILXxyhFH8Zag0=";
};
leanPackageName = "aesop";
leanDeps = [ batteries ];
meta = {
description = "White-box automation for Lean 4";
homepage = "https://github.com/leanprover-community/aesop";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ nadja-y ];
};
}