-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Expand file tree
/
Copy pathdefault.nix
More file actions
27 lines (23 loc) · 655 Bytes
/
default.nix
File metadata and controls
27 lines (23 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# nixpkgs-update: no auto update
{
lib,
buildLakePackage,
fetchFromGitHub,
}:
buildLakePackage {
pname = "lean4-plausible";
version = "0-unstable-2026-03-28";
src = fetchFromGitHub {
owner = "leanprover-community";
repo = "plausible";
rev = "83e90935a17ca19ebe4b7893c7f7066e266f50d3";
hash = "sha256-08fNB2GK5AqDJ15n5Ol+HYqaSbsznyp4cerDo32bG50=";
};
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 ];
};
}