2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv
|
2020-11-03 16:14:28 -08:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
2021-01-18 22:50:56 -08:00
|
|
|
, pkg-config
|
2020-11-03 16:14:28 -08:00
|
|
|
, makeWrapper
|
|
|
|
, dbus
|
|
|
|
, libpulseaudio
|
|
|
|
, notmuch
|
|
|
|
, ethtool
|
|
|
|
}:
|
2017-11-13 12:37:02 -08:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-05-06 12:32:03 -07:00
|
|
|
pname = "i3status-rust";
|
2020-12-04 06:20:22 -08:00
|
|
|
version = "0.14.3";
|
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}";
|
2020-12-04 06:20:22 -08:00
|
|
|
sha256 = "1k9dgmd4wz9950kr35da31rhph43gmvg8dif7hg1xw41xch6bi60";
|
2017-11-13 12:37:02 -08:00
|
|
|
};
|
|
|
|
|
2020-12-04 06:20:22 -08:00
|
|
|
cargoSha256 = "0qqkcgl9iz4kxl1a2vv2p7vy7wxn970y28jynf3n7hfp16i3liy2";
|
2017-11-13 12:37:02 -08:00
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ pkg-config makeWrapper ];
|
2017-11-13 12:37:02 -08:00
|
|
|
|
2020-11-03 16:14:28 -08:00
|
|
|
buildInputs = [ dbus libpulseaudio notmuch ];
|
|
|
|
|
|
|
|
cargoBuildFlags = [
|
|
|
|
"--features=notmuch"
|
|
|
|
];
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/i3status-rs --prefix PATH : "${ethtool}/bin"
|
|
|
|
'';
|
2019-02-17 09:19:26 -08:00
|
|
|
|
|
|
|
# Currently no tests are implemented, so we avoid building the package twice
|
|
|
|
doCheck = false;
|
2017-11-13 12:37:02 -08:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-11-13 12:37:02 -08:00
|
|
|
description = "Very resource-friendly and feature-rich replacement for i3status";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/greshake/i3status-rust";
|
2017-11-13 12:37:02 -08:00
|
|
|
license = licenses.gpl3;
|
2020-02-02 22:04:38 -08:00
|
|
|
maintainers = with maintainers; [ backuitist globin ma27 ];
|
2017-11-13 12:37:02 -08:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|