2019-02-17 09:19:26 -08:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, pkgconfig, dbus, libpulseaudio }:
|
2017-11-13 12:37:02 -08:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-05-06 12:32:03 -07:00
|
|
|
pname = "i3status-rust";
|
2019-10-07 09:58:57 -07:00
|
|
|
version = "0.11.0";
|
2017-11-13 12:37:02 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "greshake";
|
2019-05-06 12:32:03 -07:00
|
|
|
repo = pname;
|
2019-07-15 12:53:46 -07:00
|
|
|
rev = "v${version}";
|
2019-10-07 09:58:57 -07:00
|
|
|
sha256 = "15083nagd0kzpkay5jxcq5i16yvybd4sh03g9x4q9xq4cy0qwj11";
|
2017-11-13 12:37:02 -08:00
|
|
|
};
|
|
|
|
|
2019-10-07 09:58:57 -07:00
|
|
|
cargoSha256 = "1cbx2jll0bj547dvwzjprzidndbqn1c4c6hmbfgjgdkxmmrpb0r1";
|
2017-11-13 12:37:02 -08:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2019-02-17 09:19:26 -08:00
|
|
|
buildInputs = [ dbus libpulseaudio ];
|
|
|
|
|
|
|
|
# Currently no tests are implemented, so we avoid building the package twice
|
|
|
|
doCheck = false;
|
2017-11-13 12:37:02 -08: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;
|
2019-08-20 10:36:05 -07:00
|
|
|
maintainers = with maintainers; [ backuitist globin ];
|
2017-11-13 12:37:02 -08:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|