nixpkgs/pkgs/tools/misc/bat/default.nix

54 lines
1.5 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2020-11-28 10:33:16 -08:00
, nixosTests
, rustPlatform
, fetchFromGitHub
, pkg-config
, less
, Security
, libiconv
, installShellFiles
, makeWrapper
2018-09-13 02:56:22 -07:00
}:
2018-04-30 13:12:20 -07:00
rustPlatform.buildRustPackage rec {
pname = "bat";
version = "0.18.2";
2018-04-30 13:12:20 -07:00
src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Y8CmVOIDPQ9kpggOlKnxLV0oOyNRow0r/nvxNpCtYNU=";
2018-04-30 13:12:20 -07:00
};
cargoSha256 = "sha256-MdfBldImyW8QV0P3zPrYT2Vi9zChvXePI2T8tRsrlcQ=";
2020-05-11 13:40:22 -07:00
nativeBuildInputs = [ pkg-config installShellFiles makeWrapper ];
2018-04-30 13:12:20 -07:00
2021-01-15 01:19:50 -08:00
buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];
2018-06-05 14:56:17 -07:00
2018-09-21 01:23:26 -07:00
postInstall = ''
installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1
installShellCompletion $releaseDir/build/bat-*/out/assets/completions/bat.{bash,fish,zsh}
2018-09-21 01:23:26 -07: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 01:19:50 -08:00
--prefix PATH : "${lib.makeBinPath [ less ]}"
'';
checkFlags = [ "--skip=pager_more" "--skip=pager_most" ];
2020-11-28 10:33:16 -08:00
passthru.tests = { inherit (nixosTests) bat; };
meta = with lib; {
2018-04-30 13:12:20 -07:00
description = "A 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 ];
2020-06-07 20:24:34 -07:00
maintainers = with maintainers; [ dywedir lilyball zowoq ];
2018-04-30 13:12:20 -07:00
};
}