bant: 0.1.7 -> 0.1.8 (#353646)

This commit is contained in:
Weijia Wang 2024-11-06 00:24:10 +01:00 committed by GitHub
commit 54b3bdf550
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,6 +5,7 @@
fetchFromGitHub,
bazel_6,
jdk,
nix-update-script,
}:
let
@ -18,13 +19,13 @@ let
in
buildBazelPackage rec {
pname = "bant";
version = "0.1.7";
version = "0.1.8";
src = fetchFromGitHub {
owner = "hzeller";
repo = "bant";
rev = "v${version}";
hash = "sha256-QbxPosjlrpxbz6gQKUKccF2Gu/i5xvqh2gwfABYE8kE=";
hash = "sha256-CMqh2v6Y/jvrDC2M4Q+pC0FkNJ95gbGTR1UC6zviwV4=";
};
bazelFlags = [
@ -39,8 +40,8 @@ buildBazelPackage rec {
fetchAttrs = {
hash =
{
aarch64-linux = "sha256-LNca4h4yceSgve9GYUoXqlODKPjLAa71kh1BWXqRYtk=";
x86_64-linux = "sha256-bRFIfaVbsU2WroXR/i0E7J4rWeaNEoum93r8qOMXXvc=";
aarch64-linux = "sha256-K+uGH3ox49taSPZ1aLYPrOLNRO3aLQeOSdrkmTC444U=";
x86_64-linux = "sha256-yNwD3n7exyG5LbhR2GuKIvoul6UQnyk3+8pLpnDzjFw=";
}
.${system} or (throw "No hash for system: ${system}");
};
@ -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;
};
}