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

48 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv
, 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 {
pname = "bat";
2020-11-24 21:05:17 +00:00
version = "0.17.1";
2018-04-30 21:12:20 +01:00
src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
rev = "v${version}";
2020-11-24 21:05:17 +00:00
sha256 = "1kbziqm00skj65gpjq6m83hmfk9g3xyx88gai1r80pzsx8g239w1";
2018-04-30 21:12:20 +01:00
};
2020-11-24 21:05:17 +00:00
cargoSha256 = "1pdja5jhk036hpgv77xc3fcvra1sw0z5jc1ry53i0r7362lnwapz";
2020-05-11 21:40:22 +01:00
nativeBuildInputs = [ pkg-config installShellFiles makeWrapper ];
2018-04-30 21:12:20 +01:00
2018-09-13 10:56:22 +01:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security libiconv ];
2018-06-05 22:56:17 +01:00
2018-09-21 09:23:26 +01:00
postInstall = ''
installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1
installShellCompletion $releaseDir/build/bat-*/out/assets/completions/bat.{fish,zsh}
2018-09-21 09:23:26 +01: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" \
--prefix PATH : "${stdenv.lib.makeBinPath [ less ]}"
'';
2018-04-30 21:12:20 +01:00
meta = with stdenv.lib; {
description = "A cat(1) clone with syntax highlighting and Git integration";
homepage = "https://github.com/sharkdp/bat";
license = with licenses; [ asl20 /* or */ mit ];
2020-06-08 04:24:34 +01:00
maintainers = with maintainers; [ dywedir lilyball zowoq ];
2018-04-30 21:12:20 +01:00
};
}