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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
739 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-03-25 14:52:32 +00:00
buildGoModule rec {
pname = "bazelisk";
2023-05-19 09:00:04 +00:00
version = "1.17.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}";
2023-05-19 09:00:04 +00:00
sha256 = "sha256-F3paYKK+L5mBCQvlusKlSBS1X9fVSDHFw1Ujiyo5yrc=";
2019-03-25 14:52:32 +00:00
};
2023-05-19 09:00:04 +00:00
vendorHash = "sha256-V1GKZPLBjFhl0F0AvUC6MfAsrZsVToSZU3K2/hwOCVs=";
2019-03-25 14:52:32 +00:00
doCheck = false;
2021-08-26 06:45:51 +00:00
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
}