nixpkgs/pkgs/development/tools/bazelisk/default.nix

30 lines
754 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-03-25 14:52:32 +00:00
buildGoModule rec {
pname = "bazelisk";
2021-07-13 06:14:05 +00:00
version = "1.10.0";
2019-03-25 14:52:32 +00:00
src = fetchFromGitHub {
2019-06-25 17:15:38 +00:00
owner = "bazelbuild";
2019-03-25 14:52:32 +00:00
repo = pname;
rev = "v${version}";
2021-07-13 06:14:05 +00:00
sha256 = "sha256-G2cHKhgsv1fj7eKbADER3R2uXp9DnKevboE7vnO5pDE=";
2019-03-25 14:52:32 +00:00
};
2021-07-13 06:14:05 +00:00
vendorSha256 = "sha256-5qpeAD4VFsR8iJlRiNTncOdq39lq3MU6gSLu3G/BcPU=";
2019-03-25 14:52:32 +00:00
doCheck = false;
buildFlagsArray = [ "-ldflags=-s -w -X main.BazeliskVersion=${version}" ];
meta = with lib; {
2019-03-25 14:52:32 +00:00
description = "A user-friendly launcher for Bazel";
2019-06-25 17:15:38 +00:00
longDescription = ''
BEWARE: This package does not work on NixOS.
'';
homepage = "https://github.com/bazelbuild/bazelisk";
2019-03-25 14:52:32 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ elasticdog ];
};
2020-06-05 09:20:00 +00:00
}