2019-09-01 06:53:09 +00:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, llvmPackages, pkgconfig, zlib
|
2018-09-13 09:56:22 +00:00
|
|
|
, Security, libiconv
|
|
|
|
}:
|
2018-04-30 20:12:20 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-05-15 21:46:56 +00:00
|
|
|
pname = "bat";
|
2019-09-01 06:53:09 +00:00
|
|
|
version = "0.12.0";
|
2018-04-30 20:12:20 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sharkdp";
|
2019-05-15 21:46:56 +00:00
|
|
|
repo = pname;
|
2018-04-30 20:12:20 +00:00
|
|
|
rev = "v${version}";
|
2019-09-01 06:53:09 +00:00
|
|
|
sha256 = "07qxghplqq8km4kp9zas2acw302a77y72x3ix1272kb1zxhw4as6";
|
2018-08-21 10:08:30 +00:00
|
|
|
fetchSubmodules = true;
|
2018-04-30 20:12:20 +00:00
|
|
|
};
|
|
|
|
|
2019-09-01 06:53:09 +00:00
|
|
|
cargoSha256 = "0j9wxv21a91yfvbbvgn5ms5zi1aipj1k2g42mfdvvw2vsdzqagxz";
|
2018-04-30 20:12:20 +00:00
|
|
|
|
2019-09-01 06:53:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig llvmPackages.libclang zlib ];
|
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
|
|
|
|
2019-09-01 06:53:09 +00:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
|
|
|
|
2018-09-21 08:23:26 +00:00
|
|
|
postInstall = ''
|
|
|
|
install -m 444 -Dt $out/share/man/man1 doc/bat.1
|
2019-05-15 21:46:56 +00:00
|
|
|
install -m 444 -Dt $out/share/fish/vendor_completions.d assets/completions/bat.fish
|
2018-09-21 08:23:26 +00:00
|
|
|
'';
|
|
|
|
|
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 ];
|
2019-05-15 21:46:56 +00:00
|
|
|
maintainers = with maintainers; [ dywedir lilyball ];
|
|
|
|
platforms = platforms.all;
|
2018-04-30 20:12:20 +00:00
|
|
|
};
|
|
|
|
}
|