bant: add passthru.updateScript

This commit is contained in:
wxt 2024-11-04 21:38:47 +08:00
parent 4880c5571e
commit 99ad7e7649
No known key found for this signature in database
GPG Key ID: F62181757D8BF693

View File

@ -5,6 +5,7 @@
fetchFromGitHub,
bazel_6,
jdk,
nix-update-script,
}:
let
@ -60,14 +61,16 @@ buildBazelPackage rec {
'';
};
meta = with lib; {
passthru.updateScript = nix-update-script { };
meta = {
description = "Bazel/Build Analysis and Navigation Tool";
homepage = "http://bant.build/";
license = licenses.gpl2Only;
maintainers = with maintainers; [
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [
hzeller
lromor
];
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
}