mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
Add leangz (leantar) as a new build and runtime dependency. https://github.com/leanprover/lean4/releases/tag/v4.30.0 https://github.com/leanprover-community/mathlib4/blob/v4.30.0/lake-manifest.json
28 lines
662 B
Nix
28 lines
662 B
Nix
{
|
|
lib,
|
|
buildLakePackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildLakePackage {
|
|
pname = "lean4-plausible";
|
|
# nixpkgs-update: no auto update
|
|
version = "4.30.0-unstable-2026-05-26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leanprover-community";
|
|
repo = "plausible";
|
|
rev = "a456461b368b71d2accd95234832cd9c174b5437";
|
|
hash = "sha256-DSaS0W2cfCUh2N+7WyiM7aUv3trtRNON0PzCgCW2SKY=";
|
|
};
|
|
|
|
leanPackageName = "plausible";
|
|
|
|
meta = {
|
|
description = "Property-based testing framework for Lean 4";
|
|
homepage = "https://github.com/leanprover-community/plausible";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ nadja-y ];
|
|
};
|
|
}
|