about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-04-23 09:10:50 -0500
committerGitHub <noreply@github.com>2020-04-23 09:10:50 -0500
commit7c41b7dee74850bf99564a8d706550e9dd7a1b8c (patch)
treedeaa636fa8d70e3e2a3cf146aa43da5190c074c8 /pkgs/applications
parentf02a1293138a01fb5cda53336389aa79f1268c19 (diff)
parentebf8442ad346416bb703d33380ba22d8f872fe5a (diff)
downloadnixlib-7c41b7dee74850bf99564a8d706550e9dd7a1b8c.tar
nixlib-7c41b7dee74850bf99564a8d706550e9dd7a1b8c.tar.gz
nixlib-7c41b7dee74850bf99564a8d706550e9dd7a1b8c.tar.bz2
nixlib-7c41b7dee74850bf99564a8d706550e9dd7a1b8c.tar.lz
nixlib-7c41b7dee74850bf99564a8d706550e9dd7a1b8c.tar.xz
nixlib-7c41b7dee74850bf99564a8d706550e9dd7a1b8c.tar.zst
nixlib-7c41b7dee74850bf99564a8d706550e9dd7a1b8c.zip
Merge pull request #85830 from marsam/update-spotify-tui
spotify-tui: 0.17.1 -> 0.18.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/spotify-tui/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/audio/spotify-tui/default.nix b/pkgs/applications/audio/spotify-tui/default.nix
index 5f9cf2720cda..d29e9e33568b 100644
--- a/pkgs/applications/audio/spotify-tui/default.nix
+++ b/pkgs/applications/audio/spotify-tui/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "spotify-tui";
-  version = "0.17.1";
+  version = "0.18.0";
 
   src = fetchFromGitHub {
     owner = "Rigellute";
     repo = "spotify-tui";
     rev = "v${version}";
-    sha256 = "1gsddjinxmglm05hhphclax08d9pig1f0wjjs3bbcq096fydxgfs";
+    sha256 = "15icg332iyacdn4ydr4nivblayg4xkcnjh4f0sjnhj4q173v8fq2";
   };
 
-  cargoSha256 = "1y398ypckk3gw1sfzf97xzwf5d5z3kxlcpn3bccmsfr59kvkf661";
+  cargoSha256 = "0rw8pj74k88rvcr18837g356lwsn2vdq384yma9df462xd2cw823";
 
   nativeBuildInputs = [ pkgconfig ] ++ stdenv.lib.optionals stdenv.isLinux [ python3 ];
   buildInputs = [ openssl ]