mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-28 21:15:57 +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
30 lines
713 B
Nix
30 lines
713 B
Nix
{
|
|
lib,
|
|
buildLakePackage,
|
|
fetchFromGitHub,
|
|
Cli,
|
|
}:
|
|
|
|
buildLakePackage {
|
|
pname = "lean4-importGraph";
|
|
# nixpkgs-update: no auto update
|
|
version = "4.30.0-unstable-2026-05-26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leanprover-community";
|
|
repo = "import-graph";
|
|
rev = "515cf9d0c00ece5e661f6de4326a53dedc1e8ea1";
|
|
hash = "sha256-V3bGQxTNs2G4MqaVxRb6WED1a7VaHfEo1HgBNqPipz8=";
|
|
};
|
|
|
|
leanPackageName = "importGraph";
|
|
leanDeps = [ Cli ];
|
|
|
|
meta = {
|
|
description = "Tools to analyse and visualise Lean 4 import structures";
|
|
homepage = "https://github.com/leanprover-community/import-graph";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ nadja-y ];
|
|
};
|
|
}
|