2020-07-02 00:42:32 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, installShellFiles
|
|
|
|
, libiconv
|
|
|
|
, Security
|
|
|
|
}:
|
2019-10-04 10:20:00 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "delta";
|
2021-10-30 18:32:30 +01:00
|
|
|
version = "0.9.2";
|
2019-10-04 10:20:00 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dandavison";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-10-30 18:32:30 +01:00
|
|
|
sha256 = "sha256-DJG8C7oSTf4YKeSVytN4pVF4qVImg1bsTYbnfkR+U94=";
|
2019-10-04 10:20:00 +01:00
|
|
|
};
|
|
|
|
|
2021-10-30 18:32:30 +01:00
|
|
|
cargoSha256 = "sha256-mweH+ZIcNGGmoGUhnmZzaB5y14eO/XkHqrL8Nz/b3Jg=";
|
2020-04-27 00:17:00 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2020-07-02 00:42:32 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
|
2020-04-27 00:17:00 +01:00
|
|
|
postInstall = ''
|
2020-08-08 23:02:46 +01:00
|
|
|
installShellCompletion --bash --name delta.bash etc/completion/completion.bash
|
|
|
|
installShellCompletion --zsh --name _delta etc/completion/completion.zsh
|
2020-04-27 00:17:00 +01:00
|
|
|
'';
|
2019-10-04 10:20:00 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/dandavison/delta";
|
|
|
|
description = "A syntax-highlighting pager for git";
|
2019-12-04 09:20:00 +00:00
|
|
|
changelog = "https://github.com/dandavison/delta/releases/tag/${version}";
|
2019-10-04 10:20:00 +01:00
|
|
|
license = licenses.mit;
|
2021-01-01 13:39:41 +00:00
|
|
|
maintainers = with maintainers; [ marsam zowoq ];
|
2019-10-04 10:20:00 +01:00
|
|
|
};
|
|
|
|
}
|