nixpkgs/pkgs/development/tools/rebazel/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

26 lines
695 B
Nix

{ lib, stdenv, rustPlatform, fetchFromGitHub, CoreServices }:
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=";
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
meta = with lib; {
description = "tool for expediting bazel build workflows";
mainProgram = "rebazel";
homepage = "https://github.com/meetup/rebazel";
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
};
}