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

43 lines
1.3 KiB
Nix
Raw Normal View History

2020-05-26 23:33:32 +00:00
{ stdenv, rustPlatform, fetchFromGitHub, pkgconfig, less
, Security, libiconv, installShellFiles, makeWrapper
2018-09-13 09:56:22 +00:00
}:
2018-04-30 20:12:20 +00:00
rustPlatform.buildRustPackage rec {
pname = "bat";
2020-05-27 22:23:30 +00:00
version = "0.15.4";
2018-04-30 20:12:20 +00:00
src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
2018-04-30 20:12:20 +00:00
rev = "v${version}";
2020-05-27 22:23:30 +00:00
sha256 = "1pjdvhldmjpy8ymb7r91y18hj5dx1iygszsfwkd66v9rncjigd07";
2018-08-21 10:08:30 +00:00
fetchSubmodules = true;
2018-04-30 20:12:20 +00:00
};
2020-05-27 22:23:30 +00:00
cargoSha256 = "0myz06hjv4hwzmyqa9l36i9j9d213a0mnq8rvx6wyff7mr9zk99i";
2020-05-11 20:40:22 +00:00
2020-05-26 23:33:32 +00:00
nativeBuildInputs = [ pkgconfig installShellFiles makeWrapper ];
2018-04-30 20:12:20 +00:00
2018-09-13 09:56:22 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security libiconv ];
2018-06-05 21:56:17 +00:00
2018-09-21 08:23:26 +00:00
postInstall = ''
installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1
installShellCompletion $releaseDir/build/bat-*/out/assets/completions/bat.fish
2018-09-21 08:23:26 +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" \
--prefix PATH : "${stdenv.lib.makeBinPath [ less ]}"
'';
2018-04-30 20:12:20 +00:00
meta = with stdenv.lib; {
description = "A cat(1) clone with syntax highlighting and Git integration";
homepage = "https://github.com/sharkdp/bat";
2018-05-09 06:59:52 +00:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ dywedir lilyball ];
platforms = platforms.all;
2018-04-30 20:12:20 +00:00
};
}