summary refs log blame commit diff
path: root/pkgs/development/tools/rebazel/default.nix
blob: 5dee0a1b9e866410c921200fc88c8c81e6d07a81 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                 
                                                                      







                                                              
{ 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-cBAm8LyNKEVJkhZJ+QZU5XtQutb1oNvad8xH70Bi2LM=";

  meta = with lib; {
    description = "tool for expediting bazel build workflows";
    homepage = "https://github.com/meetup/rebazel";
    license = licenses.mit;
    maintainers = with maintainers; [ zimbatm ];
  };
}