2019-12-23 02:25:31 +01:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, llvmPackages, pkgconfig, less
|
|
|
|
, Security, libiconv, installShellFiles, makeWrapper
|
2018-09-13 11:56:22 +02:00
|
|
|
}:
|
2018-04-30 22:12:20 +02:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-05-15 23:46:56 +02:00
|
|
|
pname = "bat";
|
2020-05-11 22:40:22 +02:00
|
|
|
version = "0.15.1";
|
2018-04-30 22:12:20 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sharkdp";
|
2019-05-15 23:46:56 +02:00
|
|
|
repo = pname;
|
2018-04-30 22:12:20 +02:00
|
|
|
rev = "v${version}";
|
2020-05-11 22:40:22 +02:00
|
|
|
sha256 = "10cs94ja1dmn0f24gqkcy8rf68b3b43k6qpbb5njbg0hcx3x6cyj";
|
2018-08-21 12:08:30 +02:00
|
|
|
fetchSubmodules = true;
|
2018-04-30 22:12:20 +02:00
|
|
|
};
|
|
|
|
|
2020-05-11 22:40:22 +02:00
|
|
|
cargoSha256 = "13cphi08bp6lg054acgliir8dx2jajll4m3c4xxy04skmx555zr8";
|
|
|
|
|
|
|
|
# Disable test that's broken on macOS.
|
|
|
|
# This should probably be removed on the next release.
|
|
|
|
# https://github.com/sharkdp/bat/issues/983
|
|
|
|
patches = [ ./macos.patch ];
|
2018-04-30 22:12:20 +02:00
|
|
|
|
2019-12-23 02:25:31 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig llvmPackages.libclang 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
|
|
|
|
2019-09-01 08:53:09 +02:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
|
|
|
|
2018-09-21 10:23:26 +02:00
|
|
|
postInstall = ''
|
2020-03-22 13:25:00 +01:00
|
|
|
installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1
|
|
|
|
installShellCompletion $releaseDir/build/bat-*/out/assets/completions/bat.fish
|
2018-09-21 10:23:26 +02:00
|
|
|
'';
|
|
|
|
|
2019-12-23 02:25:31 +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 22:12:20 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A cat(1) clone with syntax highlighting and Git integration";
|
2020-03-22 13:25:00 +01:00
|
|
|
homepage = "https://github.com/sharkdp/bat";
|
2018-05-09 08:59:52 +02:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2019-05-15 23:46:56 +02:00
|
|
|
maintainers = with maintainers; [ dywedir lilyball ];
|
|
|
|
platforms = platforms.all;
|
2018-04-30 22:12:20 +02:00
|
|
|
};
|
|
|
|
}
|