2019-10-07 09:14:32 +02:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, llvmPackages, pkgconfig
|
|
|
|
, Security, libiconv, installShellFiles
|
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";
|
2019-09-03 10:35:32 +02:00
|
|
|
version = "0.12.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}";
|
2019-09-03 10:35:32 +02:00
|
|
|
sha256 = "1cpa8dal4c27pnbmmrar4vqzcl4h0zf8x1zx1dlf0riavdg9n56y";
|
2018-08-21 12:08:30 +02:00
|
|
|
fetchSubmodules = true;
|
2018-04-30 22:12:20 +02:00
|
|
|
};
|
|
|
|
|
2019-09-03 10:35:32 +02:00
|
|
|
cargoSha256 = "0d7h0kn41w6wm4w63vjy2i7r19jkansfvfjn7vgh2gqh5m60kal2";
|
2018-04-30 22:12:20 +02:00
|
|
|
|
2019-10-07 09:14:32 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig llvmPackages.libclang installShellFiles ];
|
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 = ''
|
2019-10-07 09:14:32 +02:00
|
|
|
installManPage doc/bat.1
|
|
|
|
installShellCompletion assets/completions/bat.fish
|
2018-09-21 10:23:26 +02:00
|
|
|
'';
|
|
|
|
|
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;
|
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
|
|
|
};
|
|
|
|
}
|