rebazel: init at 0.1.4

This commit is contained in:
zimbatm 2020-06-15 19:12:34 +02:00
parent 09b137a057
commit 6cddce1d1d
No known key found for this signature in database
GPG Key ID: 71BAF6D40C1D63D7
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "rebazel";
version = "0.1.4";
src = fetchFromGitHub {
owner = "meetup";
repo = "rebazel";
rev = "v${version}";
hash = "sha256-v84ZXhtJpejQmP61NmP06+qrtMu/0yb7UyD7U12xlME=";
};
cargoSha256 = "sha256-2FmtbvtNfNoocj3Ly553KBLfOgBAa/eAxOrfZ3NGzzw=";
meta = with lib; {
description = "tool for expediting bazel build workflows";
homepage = "https://github.com/meetup/rebazel";
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
}

View File

@ -10075,6 +10075,8 @@ in
bazelisk = callPackage ../development/tools/bazelisk { };
rebazel = callPackage ../development/tools/rebazel { };
buildBazelPackage = callPackage ../build-support/build-bazel-package { };
bear = callPackage ../development/tools/build-managers/bear { };