aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/rebazel/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/tools/rebazel/default.nix')
-rw-r--r--nixpkgs/pkgs/development/tools/rebazel/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/tools/rebazel/default.nix b/nixpkgs/pkgs/development/tools/rebazel/default.nix
new file mode 100644
index 00000000000..73a58ee100b
--- /dev/null
+++ b/nixpkgs/pkgs/development/tools/rebazel/default.nix
@@ -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 ];
+ };
+}