2018-09-13 10:56:22 +01:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib
|
|
|
|
, Security, libiconv
|
|
|
|
}:
|
2018-04-30 21:12:20 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-05-15 22:46:56 +01:00
|
|
|
pname = "bat";
|
|
|
|
version = "0.11.0";
|
2018-04-30 21:12:20 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sharkdp";
|
2019-05-15 22:46:56 +01:00
|
|
|
repo = pname;
|
2018-04-30 21:12:20 +01:00
|
|
|
rev = "v${version}";
|
2019-05-15 22:46:56 +01:00
|
|
|
sha256 = "0yyvlplskjvxb2cspqsvfsnahd5m0s83psrp777ng0wc0kr1adbw";
|
2018-08-21 11:08:30 +01:00
|
|
|
fetchSubmodules = true;
|
2018-04-30 21:12:20 +01:00
|
|
|
};
|
|
|
|
|
2019-05-15 22:46:56 +01:00
|
|
|
cargoSha256 = "078n31c0isvxvna0s1m12xv4bkh15rb2nixfyg4c501mlkalb517";
|
2018-04-30 21:12:20 +01:00
|
|
|
|
2018-06-01 11:13:52 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig zlib ];
|
2018-04-30 21:12:20 +01:00
|
|
|
|
2018-09-13 10:56:22 +01:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security libiconv ];
|
2018-06-05 22:56:17 +01:00
|
|
|
|
2018-09-21 09:23:26 +01:00
|
|
|
postInstall = ''
|
|
|
|
install -m 444 -Dt $out/share/man/man1 doc/bat.1
|
2019-05-15 22:46:56 +01:00
|
|
|
install -m 444 -Dt $out/share/fish/vendor_completions.d assets/completions/bat.fish
|
2018-09-21 09:23:26 +01:00
|
|
|
'';
|
|
|
|
|
2018-04-30 21:12:20 +01: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 07:59:52 +01:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2019-05-15 22:46:56 +01:00
|
|
|
maintainers = with maintainers; [ dywedir lilyball ];
|
|
|
|
platforms = platforms.all;
|
2018-04-30 21:12:20 +01:00
|
|
|
};
|
|
|
|
}
|