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

35 lines
983 B
Nix
Raw Normal View History

2018-09-13 11:56:22 +02:00
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib
, Security, libiconv
}:
2018-04-30 22:12:20 +02:00
rustPlatform.buildRustPackage rec {
name = "bat-${version}";
2018-11-11 17:10:20 +01:00
version = "0.9.0";
2018-04-30 22:12:20 +02:00
src = fetchFromGitHub {
owner = "sharkdp";
repo = "bat";
rev = "v${version}";
2018-11-11 17:10:20 +01:00
sha256 = "13c88h1m9flmx3x2h7xrnb1wy4vgdxsqahw8cqa0x61ay0019a7s";
2018-08-21 12:08:30 +02:00
fetchSubmodules = true;
2018-04-30 22:12:20 +02:00
};
2018-11-11 17:10:20 +01:00
cargoSha256 = "1clng4rl7mq50z8d5ipmr9fapjj4qmpf4gmdnfl6vs35pq3wp9j4";
2018-04-30 22:12:20 +02:00
2018-06-01 12:13:52 +02:00
nativeBuildInputs = [ cmake pkgconfig zlib ];
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
2018-09-21 10:23:26 +02:00
postInstall = ''
install -m 444 -Dt $out/share/man/man1 doc/bat.1
'';
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 ];
maintainers = with maintainers; [ dywedir ];
2018-06-05 23:56:17 +02:00
platforms = platforms.linux ++ platforms.darwin;
2018-04-30 22:12:20 +02:00
};
}