mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
64 lines
1.4 KiB
Nix
64 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildBazelPackage,
|
|
fetchFromGitHub,
|
|
bazel_6,
|
|
jdk,
|
|
}:
|
|
|
|
let
|
|
system = stdenv.hostPlatform.system;
|
|
registry = fetchFromGitHub {
|
|
owner = "bazelbuild";
|
|
repo = "bazel-central-registry";
|
|
rev = "40bc9ad53e5a59d596935839e7c072679e706266";
|
|
hash = "sha256-CL0YMQd1ck6/dlvJCLxt9jYyqDuk+iAWfdBOMj864u8=";
|
|
};
|
|
in buildBazelPackage rec {
|
|
pname = "bant";
|
|
version = "0.1.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hzeller";
|
|
repo = "bant";
|
|
rev = "v${version}";
|
|
hash = "sha256-QbxPosjlrpxbz6gQKUKccF2Gu/i5xvqh2gwfABYE8kE=";
|
|
};
|
|
|
|
bazelFlags = ["--registry" "file://${registry}"];
|
|
|
|
postPatch = ''
|
|
patchShebangs scripts/create-workspace-status.sh
|
|
'';
|
|
|
|
fetchAttrs = {
|
|
sha256 = {
|
|
aarch64-linux = "sha256-09RL0tj6xsGEmuv11V81eAtqLc9nAaE8Il3d6ueS0UQ=";
|
|
x86_64-linux = "sha256-6mlaJ/kT14vKvlJjxqBK/lESjjxbcYxApi7+eiiI37M=";
|
|
}.${system} or (throw "No hash for system: ${system}");
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
jdk
|
|
];
|
|
bazel = bazel_6;
|
|
|
|
bazelBuildFlags = [ "-c opt" ];
|
|
bazelTestTargets = [ "//..." ];
|
|
bazelTargets = [ "//bant:bant" ];
|
|
|
|
buildAttrs = {
|
|
installPhase = ''
|
|
install -D --strip bazel-bin/bant/bant "$out/bin/bant"
|
|
'';
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Bazel/Build Analysis and Navigation Tool";
|
|
homepage = "http://bant.build/";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ hzeller lromor ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|