From 97263dfb928646b40a9a1407e79b9fb257df33fb Mon Sep 17 00:00:00 2001 From: Vladyslav Mykhailichenko Date: Wed, 9 May 2018 09:59:52 +0300 Subject: [PATCH] bat: 0.2.0 -> 0.3.0 --- pkgs/tools/misc/bat/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/misc/bat/default.nix b/pkgs/tools/misc/bat/default.nix index 5516f4a26a3d..b869f1e634c5 100644 --- a/pkgs/tools/misc/bat/default.nix +++ b/pkgs/tools/misc/bat/default.nix @@ -2,24 +2,24 @@ rustPlatform.buildRustPackage rec { name = "bat-${version}"; - version = "0.2.0"; + version = "0.3.0"; src = fetchFromGitHub { owner = "sharkdp"; repo = "bat"; rev = "v${version}"; - sha256 = "0qbjkrakcpvnzzljifykw88g0qmmk60id23sjvhp4md54h4xg29p"; + sha256 = "15d7i0iy5lks3jg9js6n6fy4xanjk76fpryl2kq88kdkq67hpzfp"; }; - cargoSha256 = "07r10wwxv8svrw94djl092zj512868izlxldsiljfj34230abl02"; + cargoSha256 = "179a7abhzpxjp3cc820jzxg0qk1fiv9rkpazwnzhkjl8yd7b7qi3"; - buildInputs = with pkgs; [ openssl pkgconfig cmake zlib file perl curl ]; + buildInputs = with pkgs; [ pkgconfig cmake zlib file perl curl ]; meta = with stdenv.lib; { description = "A cat(1) clone with syntax highlighting and Git integration"; homepage = https://github.com/sharkdp/bat; - license = licenses.mit; - maintainers = []; + license = with licenses; [ asl20 /* or */ mit ]; + maintainers = with maintainers; [ dywedir ]; platforms = platforms.linux; }; }