mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
Merge pull request #55960 from Moredread/i3status-rust-bump
i3status-rust: 0.9.0.2018-10-02 -> 0.9.0.2019-02-15
This commit is contained in:
commit
08012fb5d7
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue