2018-06-05 21:56:17 +00:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib, libiconv, darwin }:
|
2018-04-30 20:12:20 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
name = "bat-${version}";
|
2018-09-01 06:45:32 +00:00
|
|
|
version = "0.6.1";
|
2018-04-30 20:12:20 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sharkdp";
|
|
|
|
repo = "bat";
|
|
|
|
rev = "v${version}";
|
2018-09-01 06:45:32 +00:00
|
|
|
sha256 = "19xmj3a3npx4v1mlvd31r3icml73mxjq6la5qifb2i35ciqnx9bd";
|
2018-08-21 10:08:30 +00:00
|
|
|
fetchSubmodules = true;
|
2018-04-30 20:12:20 +00:00
|
|
|
};
|
|
|
|
|
2018-08-29 10:37:59 +00:00
|
|
|
cargoSha256 = "062vvpj514h85h9gm3jipp6z256cnnbxbjy7ja6bm7i6bpglyvvi";
|
2018-04-30 20:12:20 +00:00
|
|
|
|
2018-06-01 10:13:52 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig zlib ];
|
2018-04-30 20:12:20 +00:00
|
|
|
|
2018-06-05 21:56:17 +00:00
|
|
|
buildInputs = [ libiconv ] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.Security
|
|
|
|
];
|
|
|
|
|
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 ];
|
|
|
|
maintainers = with maintainers; [ dywedir ];
|
2018-06-05 21:56:17 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2018-04-30 20:12:20 +00:00
|
|
|
};
|
|
|
|
}
|