nixpkgs/pkgs/development/tools/rebazel/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
666 B
Nix
Raw Normal View History

2022-02-28 10:16:36 +03:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, CoreServices }:
2020-06-15 20:12:34 +03:00
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=";
2020-06-15 20:12:34 +03:00
2022-02-28 10:16:36 +03:00
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
2020-06-15 20:12:34 +03:00
meta = with lib; {
description = "tool for expediting bazel build workflows";
homepage = "https://github.com/meetup/rebazel";
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
}