nixpkgs/pkgs/applications/version-management/git-and-tools/git-absorb/default.nix

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

35 lines
993 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, libiconv, Security }:
2018-11-16 00:39:26 +00:00
rustPlatform.buildRustPackage rec {
2019-07-15 00:00:00 +00:00
pname = "git-absorb";
2020-11-03 03:00:00 +00:00
version = "0.6.6";
2018-11-16 00:39:26 +00:00
src = fetchFromGitHub {
owner = "tummychow";
2019-07-15 00:00:00 +00:00
repo = pname;
2018-11-16 00:39:26 +00:00
rev = "refs/tags/${version}";
2020-11-03 03:00:00 +00:00
sha256 = "04v10bn24acify34vh5ayymsr1flcyb05f3az9k1s2m6nlxy5gb9";
2018-11-16 00:39:26 +00:00
};
2020-05-15 05:00:00 +00:00
nativeBuildInputs = [ installShellFiles ];
2021-01-15 13:21:58 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
2018-11-16 00:39:26 +00:00
cargoSha256 = "0dax6wkbyk5p8p0mm406vfgmqfmfxzyzqps6yk8fachi61x12ja6";
2020-05-15 05:00:00 +00:00
postInstall = ''
installManPage Documentation/git-absorb.1
2020-11-03 03:00:00 +00:00
for shell in bash zsh fish; do
$out/bin/git-absorb --gen-completions $shell > git-absorb.$shell
installShellCompletion git-absorb.$shell
done
2020-05-15 05:00:00 +00:00
'';
2018-11-16 00:39:26 +00:00
meta = with lib; {
2019-07-15 00:00:00 +00:00
homepage = "https://github.com/tummychow/git-absorb";
2018-11-16 00:39:26 +00:00
description = "git commit --fixup, but automatic";
license = [ licenses.bsd3 ];
maintainers = [ maintainers.marsam ];
};
}