tana: 1.0.17 -> 1.0.18 (#363483)
[NixPkgs.git] / pkgs / development / tools / rebazel / default.nix
blob33592b76e8536eadb7890e1c9997eb91a3a8366c
2   lib,
3   stdenv,
4   rustPlatform,
5   fetchFromGitHub,
6   CoreServices,
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "rebazel";
11   version = "0.1.4";
13   src = fetchFromGitHub {
14     owner = "meetup";
15     repo = "rebazel";
16     rev = "v${version}";
17     hash = "sha256-v84ZXhtJpejQmP61NmP06+qrtMu/0yb7UyD7U12xlME=";
18   };
20   cargoHash = "sha256-cBAm8LyNKEVJkhZJ+QZU5XtQutb1oNvad8xH70Bi2LM=";
22   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ];
24   meta = with lib; {
25     description = "tool for expediting bazel build workflows";
26     mainProgram = "rebazel";
27     homepage = "https://github.com/meetup/rebazel";
28     license = licenses.mit;
29     maintainers = with maintainers; [ zimbatm ];
30   };