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 {
|
|
|
|
name = "bat-${version}";
|
2018-09-13 10:56:22 +01:00
|
|
|
version = "0.7.0";
|
2018-04-30 21:12:20 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sharkdp";
|
|
|
|
repo = "bat";
|
|
|
|
rev = "v${version}";
|
2018-09-13 10:56:22 +01:00
|
|
|
sha256 = "1dhn88asf08dvl4827v4mkxafcr01m1h5jmicvzda9ywmr82g1cs";
|
2018-08-21 11:08:30 +01:00
|
|
|
fetchSubmodules = true;
|
2018-04-30 21:12:20 +01:00
|
|
|
};
|
|
|
|
|
2018-09-13 10:56:22 +01:00
|
|
|
cargoSha256 = "10s8ig08prs1wcsisrllvsixqkrkwjx769y1w5fypldn9kfk2lka";
|
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-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 ];
|
|
|
|
maintainers = with maintainers; [ dywedir ];
|
2018-06-05 22:56:17 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2018-04-30 21:12:20 +01:00
|
|
|
};
|
|
|
|
}
|