about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndré-Patrick Bubel <code@andre-bubel.de>2019-02-17 18:19:26 +0100
committerAndré-Patrick Bubel <code@andre-bubel.de>2019-02-17 19:23:55 +0100
commit9a1e3066526221d2a08addd263f2c3501d39e0b0 (patch)
tree69267c7de82cdb45b57058ccc9c468c827a0e333
parent8c2d2cba7c1f730bfb1848fe7051894b821388fa (diff)
downloadnixlib-9a1e3066526221d2a08addd263f2c3501d39e0b0.tar
nixlib-9a1e3066526221d2a08addd263f2c3501d39e0b0.tar.gz
nixlib-9a1e3066526221d2a08addd263f2c3501d39e0b0.tar.bz2
nixlib-9a1e3066526221d2a08addd263f2c3501d39e0b0.tar.lz
nixlib-9a1e3066526221d2a08addd263f2c3501d39e0b0.tar.xz
nixlib-9a1e3066526221d2a08addd263f2c3501d39e0b0.tar.zst
nixlib-9a1e3066526221d2a08addd263f2c3501d39e0b0.zip
i3status-rust: 0.9.0.2018-10-02 -> 0.9.0.2019-02-15
-rw-r--r--pkgs/applications/window-managers/i3/status-rust.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/applications/window-managers/i3/status-rust.nix b/pkgs/applications/window-managers/i3/status-rust.nix
index 0e3168a5782d..178d111d79aa 100644
--- a/pkgs/applications/window-managers/i3/status-rust.nix
+++ b/pkgs/applications/window-managers/i3/status-rust.nix
@@ -1,21 +1,24 @@
-{ stdenv, rustPlatform, fetchFromGitHub, pkgconfig, dbus }:
+{ stdenv, rustPlatform, fetchFromGitHub, pkgconfig, dbus, libpulseaudio }:
 
 rustPlatform.buildRustPackage rec {
   name = "i3status-rust-${version}";
-  version = "0.9.0.2018-10-02";
+  version = "0.9.0.2019-02-15";
 
   src = fetchFromGitHub {
     owner = "greshake";
     repo = "i3status-rust";
-    rev = "11c2a21693ffcd0b6c2e0ac919b2232918293963";
-    sha256 = "019m9qpw7djq6g7lzbm7gjcavlgsp93g3cd7cb408nxnfsi7i9dp";
+    rev = "2dc958995834b529a245c22c510b57d5c928c747";
+    sha256 = "091a2pqgkiwnya2xv5rw5sj730hf6lvkp2kk5midsa3wz2dfbc2j";
   };
 
-  cargoSha256 = "1wnify730f7c3cb8wllqvs7pzrq54g5x81xspvz5gq0iqr0q38zc";
+  cargoSha256 = "06izzv86nkn1izapldysyryz9zvjxvq23c742z284bnxjfq5my6i";
 
   nativeBuildInputs = [ pkgconfig ];
 
-  buildInputs = [ dbus ];
+  buildInputs = [ dbus libpulseaudio ];
+
+  # Currently no tests are implemented, so we avoid building the package twice
+  doCheck = false;
 
   meta = with stdenv.lib; {
     description = "Very resource-friendly and feature-rich replacement for i3status";