summary refs log tree commit diff
diff options
context:
space:
mode:
authorRaphael Das Gupta <raphael.das.gupta@hsr.ch>2018-10-24 12:07:36 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-10-24 12:07:36 +0200
commit12a658ad340d53e02cb47c4ca32eeb488dc78997 (patch)
treec4183a1533b6d522106c96271cf3dac99bab9d64
parente38b90316fe86794c5503a78ef0d5b1ec9b98af2 (diff)
downloadnixlib-12a658ad340d53e02cb47c4ca32eeb488dc78997.tar
nixlib-12a658ad340d53e02cb47c4ca32eeb488dc78997.tar.gz
nixlib-12a658ad340d53e02cb47c4ca32eeb488dc78997.tar.bz2
nixlib-12a658ad340d53e02cb47c4ca32eeb488dc78997.tar.lz
nixlib-12a658ad340d53e02cb47c4ca32eeb488dc78997.tar.xz
nixlib-12a658ad340d53e02cb47c4ca32eeb488dc78997.tar.zst
nixlib-12a658ad340d53e02cb47c4ca32eeb488dc78997.zip
tealdeer: 1.0.0 -> 1.1.0 (#48918)
and adapt description to changed upstream README.
-rw-r--r--pkgs/tools/misc/tealdeer/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/tealdeer/default.nix b/pkgs/tools/misc/tealdeer/default.nix
index fe0aa6cc3089..73a9f68d3dcd 100644
--- a/pkgs/tools/misc/tealdeer/default.nix
+++ b/pkgs/tools/misc/tealdeer/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   name = "tealdeer-${version}";
-  version = "1.0.0";
+  version = "1.1.0";
 
   src = fetchFromGitHub {
     owner = "dbrgn";
     repo = "tealdeer";
     rev = "v${version}";
-    sha256 = "0mkcja9agkbj2i93hx01r77w66ca805v4wvivcnrqmzid001717v";
+    sha256 = "055pjxgiy31j69spq66w80ig469yi075dk8ad38z6rlvjmf74k71";
   };
 
-  cargoSha256 = "1qrvic7b6g3f3gjzx7x97ipp7ppa79c0aawn0lsav0c9xxzl44jq";
+  cargoSha256 = "1jxwz2b6p82byvfjx77ba265j6sjr7bjqi2yik8x2i7lrz8v8z1g";
 
   buildInputs = [ openssl cacert curl ];
 
@@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec {
   doCheck = false;
 
   meta = with stdenv.lib; {
-    description = "An implementation of tldr in Rust";
+    description = "A very fast implementation of tldr in Rust";
     homepage = "https://github.com/dbrgn/tealdeer";
     maintainers = with maintainers; [ davidak ];
     license = with licenses; [ asl20 mit ];