33 lines
921 B
Nix
33 lines
921 B
Nix
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, libiconv, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "git-trim";
|
|
version = "0.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "foriequal0";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1rb9dhj7b7mjrhsvm9vw5gzjfxj10idnzv488jkfdz7sfhd3fcvz";
|
|
};
|
|
|
|
cargoSha256 = "1q62gqqhf78ljcvzp7yrnr0vk65rif2f7axzjq0b87prbcsr7ij4";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
postInstall = ''
|
|
install -Dm644 -t $out/share/man/man1/ docs/git-trim.1
|
|
'';
|
|
|
|
# fails with sandbox
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Automatically trims your branches whose tracking remote refs are merged or gone";
|
|
homepage = "https://github.com/foriequal0/git-trim";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.marsam ];
|
|
};
|
|
}
|