2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, libiconv, Security }:
|
2018-11-16 01:39:26 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-07-15 02:00:00 +02:00
|
|
|
pname = "git-absorb";
|
2020-11-03 04:00:00 +01:00
|
|
|
version = "0.6.6";
|
2018-11-16 01:39:26 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tummychow";
|
2019-07-15 02:00:00 +02:00
|
|
|
repo = pname;
|
2018-11-16 01:39:26 +01:00
|
|
|
rev = "refs/tags/${version}";
|
2020-11-03 04:00:00 +01:00
|
|
|
sha256 = "04v10bn24acify34vh5ayymsr1flcyb05f3az9k1s2m6nlxy5gb9";
|
2018-11-16 01:39:26 +01:00
|
|
|
};
|
|
|
|
|
2020-05-15 07:00:00 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2021-01-15 14:21:58 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
2018-11-16 01:39:26 +01:00
|
|
|
|
2020-11-03 04:00:00 +01:00
|
|
|
cargoSha256 = "0h0vlz4qd8i9bf1mgjr618zbdwfp6bmy7ql9a1xzjmfdpkl3cgk9";
|
2020-05-15 07:00:00 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installManPage Documentation/git-absorb.1
|
2020-11-03 04:00:00 +01: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 07:00:00 +02:00
|
|
|
'';
|
2018-11-16 01:39:26 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-07-15 02:00:00 +02:00
|
|
|
homepage = "https://github.com/tummychow/git-absorb";
|
2018-11-16 01:39:26 +01:00
|
|
|
description = "git commit --fixup, but automatic";
|
|
|
|
license = [ licenses.bsd3 ];
|
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|