2019-02-17 17:19:26 +00:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, pkgconfig, dbus, libpulseaudio }:
|
2017-11-13 20:37:02 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-05-06 20:32:03 +01:00
|
|
|
pname = "i3status-rust";
|
2020-02-08 22:09:00 +00:00
|
|
|
version = "0.13.1";
|
2017-11-13 20:37:02 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "greshake";
|
2019-05-06 20:32:03 +01:00
|
|
|
repo = pname;
|
2019-07-15 20:53:46 +01:00
|
|
|
rev = "v${version}";
|
2020-02-08 22:09:00 +00:00
|
|
|
sha256 = "0va6ny1v7lk30hhx4i5qyk9fwg3apy2nmh6kbmxhcf0rs5449ikg";
|
2017-11-13 20:37:02 +00:00
|
|
|
};
|
|
|
|
|
2020-02-28 02:07:02 +00:00
|
|
|
cargoSha256 = "1lywr21kk3idjyc10gy4848dmmgyqc2jjf7hpzq0vywkp639bf2x";
|
2017-11-13 20:37:02 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2019-02-17 17:19:26 +00:00
|
|
|
buildInputs = [ dbus libpulseaudio ];
|
|
|
|
|
|
|
|
# Currently no tests are implemented, so we avoid building the package twice
|
|
|
|
doCheck = false;
|
2017-11-13 20:37:02 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Very resource-friendly and feature-rich replacement for i3status";
|
|
|
|
homepage = https://github.com/greshake/i3status-rust;
|
|
|
|
license = licenses.gpl3;
|
2020-02-03 06:04:38 +00:00
|
|
|
maintainers = with maintainers; [ backuitist globin ma27 ];
|
2017-11-13 20:37:02 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|