Merge pull request #61559 from lilyball/bat

bat: 0.10.0 -> 0.11.0
This commit is contained in:
worldofpeace 2019-05-15 18:50:17 -04:00 committed by GitHub
commit d4b81614cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,18 +3,18 @@
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
name = "bat-${version}"; pname = "bat";
version = "0.10.0"; version = "0.11.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sharkdp"; owner = "sharkdp";
repo = "bat"; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1q22lbyrwh58vhznpjpkiaa8v4qv6a3a8lrxzaypd8wg78p9dca6"; sha256 = "0yyvlplskjvxb2cspqsvfsnahd5m0s83psrp777ng0wc0kr1adbw";
fetchSubmodules = true; fetchSubmodules = true;
}; };
cargoSha256 = "0npj2rf4vr45gq3qwqq6kqnv9dh58v5lpx0gsmy2qrq44dxb75rq"; cargoSha256 = "078n31c0isvxvna0s1m12xv4bkh15rb2nixfyg4c501mlkalb517";
nativeBuildInputs = [ cmake pkgconfig zlib ]; nativeBuildInputs = [ cmake pkgconfig zlib ];
@ -22,13 +22,14 @@ rustPlatform.buildRustPackage rec {
postInstall = '' postInstall = ''
install -m 444 -Dt $out/share/man/man1 doc/bat.1 install -m 444 -Dt $out/share/man/man1 doc/bat.1
install -m 444 -Dt $out/share/fish/vendor_completions.d assets/completions/bat.fish
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A cat(1) clone with syntax highlighting and Git integration"; description = "A cat(1) clone with syntax highlighting and Git integration";
homepage = https://github.com/sharkdp/bat; homepage = https://github.com/sharkdp/bat;
license = with licenses; [ asl20 /* or */ mit ]; license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ dywedir ]; maintainers = with maintainers; [ dywedir lilyball ];
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.all;
}; };
} }