2020-05-15 06:00:00 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, installShellFiles, libiconv, Security }:
|
2018-11-16 00:39:26 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-07-15 01:00:00 +01:00
|
|
|
pname = "git-absorb";
|
2020-10-19 05:20:00 +01:00
|
|
|
version = "0.6.5";
|
2018-11-16 00:39:26 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tummychow";
|
2019-07-15 01:00:00 +01:00
|
|
|
repo = pname;
|
2018-11-16 00:39:26 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2020-10-19 05:20:00 +01:00
|
|
|
sha256 = "12ih0gm07ddi86jy612f029nzav345v57pjajyy9lw017g6n6mjb";
|
2018-11-16 00:39:26 +00:00
|
|
|
};
|
|
|
|
|
2020-05-15 06:00:00 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2018-11-16 00:39:26 +00:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
|
2020-10-19 05:20:00 +01:00
|
|
|
cargoSha256 = "0x2zcw0bpwqimvbb5xj8xawvl4jcvk5lj0y2mm5ncbdapzyqdsb2";
|
2020-05-15 06:00:00 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installManPage Documentation/git-absorb.1
|
|
|
|
'';
|
2018-11-16 00:39:26 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-07-15 01:00:00 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|