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 11:56:22 +02:00
}:
2018-04-30 22:12:20 +02:00
rustPlatform.buildRustPackage rec {
pname = "bat";
version = "0.16.0";
2018-04-30 22:12:20 +02:00
src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
rev = "v${version}";
sha256 = "161pfix42j767ziyp4mslffdd20v9i0ncplvjw2pmpccwdm106kg";
2018-04-30 22:12:20 +02:00
};
cargoSha256 = "19vhhxfyx3nrngcs6dvwldnk9h4lvs7xjkb31aj1y0pyawz882h9";
2020-05-11 22:40:22 +02:00
nativeBuildInputs = [ pkg-config installShellFiles makeWrapper ];
2018-04-30 22:12:20 +02:00
2018-09-13 11:56:22 +02:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security libiconv ];
2018-06-05 23:56:17 +02:00
2018-09-21 10:23:26 +02:00
postInstall = ''
installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1
installShellCompletion $releaseDir/build/bat-*/out/assets/completions/bat.{fish,zsh}
2018-09-21 10:23:26 +02: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 22:12:20 +02: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 05:24:34 +02:00
maintainers = with maintainers; [ dywedir lilyball zowoq ];
2018-04-30 22:12:20 +02:00
};
}