Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9638d85ff6b4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b88ac050bda4
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 25, 2019

  1. bazelisk: 0.0.7 -> 0.0.8 (#63769)

    marsam authored and kalbasit committed Jun 25, 2019

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    b88ac05 View commit details
Showing with 7 additions and 4 deletions.
  1. +7 −4 pkgs/development/tools/bazelisk/default.nix
11 changes: 7 additions & 4 deletions pkgs/development/tools/bazelisk/default.nix
Original file line number Diff line number Diff line change
@@ -2,20 +2,23 @@

buildGoModule rec {
pname = "bazelisk";
version = "0.0.7";
version = "0.0.8";

src = fetchFromGitHub {
owner = "philwo";
owner = "bazelbuild";
repo = pname;
rev = "v${version}";
sha256 = "177x0mal960gs8578h5ir51vgn1bndm9z091110gqxb9xs9jq8pf";
sha256 = "16jiy71x8zr3x94p3qms3xbl8632avhwi66i82wv03n4ahkyb6qr";
};

modSha256 = "1f73j6ryidzi3kfy3rhsqx047vzwvzaqcsl7ykhg87rn2l2s7fdl";

meta = with stdenv.lib; {
description = "A user-friendly launcher for Bazel";
homepage = https://github.com/philwo/bazelisk;
longDescription = ''
BEWARE: This package does not work on NixOS.
'';
homepage = "https://github.com/bazelbuild/bazelisk";
license = licenses.asl20;
maintainers = with maintainers; [ elasticdog ];
};