2021-07-13 12:03:37 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-10-03 00:47:08 +01:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, less
|
|
|
|
, Security
|
|
|
|
, libiconv
|
|
|
|
, installShellFiles
|
|
|
|
, makeWrapper
|
2018-09-13 10:56:22 +01:00
|
|
|
}:
|
2018-04-30 21:12:20 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2020-10-03 00:47:08 +01:00
|
|
|
pname = "bat";
|
2022-01-08 17:34:23 +00:00
|
|
|
version = "0.19.0";
|
2018-04-30 21:12:20 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-10-03 00:47:08 +01:00
|
|
|
owner = "sharkdp";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-01-08 17:34:23 +00:00
|
|
|
sha256 = "sha256-XF5wMLHdiyasB2H6thk6OrkAm5bZZmlPFlBl02k52qU=";
|
2018-04-30 21:12:20 +01:00
|
|
|
};
|
2022-01-08 17:34:23 +00:00
|
|
|
cargoSha256 = "sha256-GipH9CBzvfaDqov1v9bKtrsRhUfiQ/AhBi1p+gBTwzM=";
|
2020-05-11 21:40:22 +01:00
|
|
|
|
2020-10-03 00:47:08 +01:00
|
|
|
nativeBuildInputs = [ pkg-config installShellFiles makeWrapper ];
|
2018-04-30 21:12:20 +01:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];
|
2018-06-05 22:56:17 +01:00
|
|
|
|
2018-09-21 09:23:26 +01:00
|
|
|
postInstall = ''
|
2020-03-22 12:25:00 +00:00
|
|
|
installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1
|
2021-07-13 12:03:37 +01:00
|
|
|
installShellCompletion $releaseDir/build/bat-*/out/assets/completions/bat.{bash,fish,zsh}
|
2018-09-21 09:23:26 +01:00
|
|
|
'';
|
|
|
|
|
2019-12-23 01:25:31 +00:00
|
|
|
# Insert Nix-built `less` into PATH because the system-provided one may be too old to behave as
|
|
|
|
# expected with certain flag combinations.
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram "$out/bin/bat" \
|
2021-01-15 09:19:50 +00:00
|
|
|
--prefix PATH : "${lib.makeBinPath [ less ]}"
|
2019-12-23 01:25:31 +00:00
|
|
|
'';
|
|
|
|
|
2021-02-28 04:20:00 +00:00
|
|
|
checkFlags = [ "--skip=pager_more" "--skip=pager_most" ];
|
|
|
|
|
2021-10-29 23:40:25 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
runHook preInstallCheck
|
|
|
|
|
|
|
|
testFile=$(mktemp /tmp/bat-test.XXXX)
|
|
|
|
echo -ne 'Foobar\n\n\n42' > $testFile
|
|
|
|
$out/bin/bat -p $testFile | grep "Foobar"
|
|
|
|
$out/bin/bat -p $testFile -r 4:4 | grep 42
|
|
|
|
rm $testFile
|
|
|
|
|
|
|
|
runHook postInstallCheck
|
|
|
|
'';
|
2020-11-28 18:33:16 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-04-30 21:12:20 +01:00
|
|
|
description = "A cat(1) clone with syntax highlighting and Git integration";
|
2020-10-03 00:47:08 +01:00
|
|
|
homepage = "https://github.com/sharkdp/bat";
|
2021-02-28 04:20:00 +00:00
|
|
|
changelog = "https://github.com/sharkdp/bat/raw/v${version}/CHANGELOG.md";
|
2020-10-03 00:47:08 +01:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2021-08-11 15:55:01 +01:00
|
|
|
maintainers = with maintainers; [ dywedir lilyball zowoq SuperSandro2000 ];
|
2018-04-30 21:12:20 +01:00
|
|
|
};
|
|
|
|
}
|