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
612 B
Nix
28 lines
612 B
Nix
{
|
|
lib,
|
|
buildLakePackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildLakePackage {
|
|
pname = "lean4-Qq";
|
|
# nixpkgs-update: no auto update
|
|
version = "4.30.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leanprover-community";
|
|
repo = "quote4";
|
|
tag = "v4.30.0";
|
|
hash = "sha256-jVsRw/R7D7HmsE7vQvVeDXcnVerlcDBOrhf9FJJiXkY=";
|
|
};
|
|
|
|
leanPackageName = "Qq";
|
|
|
|
meta = {
|
|
description = "Lean 4 compile-time quote and antiquote macros for metaprogramming";
|
|
homepage = "https://github.com/leanprover-community/quote4";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ nadja-y ];
|
|
};
|
|
}
|