mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
97 lines
2.4 KiB
Nix
97 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
less,
|
|
libiconv,
|
|
installShellFiles,
|
|
makeWrapper,
|
|
apple-sdk_11,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "bat";
|
|
version = "0.24.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sharkdp";
|
|
repo = "bat";
|
|
rev = "v${version}";
|
|
hash = "sha256-1RjlJEmY/jMf0IYQbrWrT1CHFyiqgarOl72u9xjjQiQ=";
|
|
};
|
|
cargoHash = "sha256-b7wNWdKQ4QLeCf7bNZRfzT9hD/D/oDglU7Xyb65IrGY=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
installShellFiles
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
libiconv
|
|
apple-sdk_11
|
|
];
|
|
|
|
postInstall = ''
|
|
installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1
|
|
installShellCompletion $releaseDir/build/bat-*/out/assets/completions/bat.{bash,fish,zsh}
|
|
'';
|
|
|
|
# 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" \
|
|
--prefix PATH : "${lib.makeBinPath [ less ]}"
|
|
'';
|
|
|
|
# Skip test cases which depends on `more`
|
|
checkFlags = [
|
|
"--skip=alias_pager_disable_long_overrides_short"
|
|
"--skip=config_read_arguments_from_file"
|
|
"--skip=env_var_bat_paging"
|
|
"--skip=pager_arg_override_env_noconfig"
|
|
"--skip=pager_arg_override_env_withconfig"
|
|
"--skip=pager_basic"
|
|
"--skip=pager_basic_arg"
|
|
"--skip=pager_env_bat_pager_override_config"
|
|
"--skip=pager_env_pager_nooverride_config"
|
|
"--skip=pager_more"
|
|
"--skip=pager_most"
|
|
"--skip=pager_overwrite"
|
|
# Fails if the filesystem performs UTF-8 validation (such as ZFS with utf8only=on)
|
|
"--skip=file_with_invalid_utf8_filename"
|
|
];
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Cat(1) clone with syntax highlighting and Git integration";
|
|
homepage = "https://github.com/sharkdp/bat";
|
|
changelog = "https://github.com/sharkdp/bat/raw/v${version}/CHANGELOG.md";
|
|
license = with licenses; [
|
|
asl20 # or
|
|
mit
|
|
];
|
|
mainProgram = "bat";
|
|
maintainers = with maintainers; [
|
|
dywedir
|
|
zowoq
|
|
SuperSandro2000
|
|
sigmasquadron
|
|
];
|
|
};
|
|
}
|