nixpkgs/pkgs/applications/window-managers/i3/status-rust.nix

61 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, makeWrapper
, dbus
, libpulseaudio
, notmuch
, openssl
, ethtool
}:
rustPlatform.buildRustPackage rec {
pname = "i3status-rust";
2021-12-07 06:07:38 +01:00
version = "0.20.7";
src = fetchFromGitHub {
owner = "greshake";
repo = pname;
rev = "v${version}";
2021-12-07 06:07:38 +01:00
sha256 = "sha256-7RfDNjTUQtVZUeRGBnd2ygSkFJOoPrNF/Bwy8GWo7To=";
};
2021-12-07 06:07:38 +01:00
cargoSha256 = "sha256-alZJm2/hhloKQn7QeUA2IMgGl86Lz8xNpZkoMHCcjVI=";
nativeBuildInputs = [ pkg-config makeWrapper ];
buildInputs = [ dbus libpulseaudio notmuch openssl ];
2021-11-16 01:00:53 +01:00
buildFeatures = [
"notmuch"
"maildir"
"pulseaudio"
];
prePatch = ''
substituteInPlace src/util.rs \
--replace "/usr/share/i3status-rust" "$out/share"
'';
postInstall = ''
mkdir -p $out/share
2021-09-01 16:35:33 +02:00
cp -R examples files/* $out/share
'';
postFixup = ''
wrapProgram $out/bin/i3status-rs --prefix PATH : "${ethtool}/bin"
'';
# Currently no tests are implemented, so we avoid building the package twice
doCheck = false;
meta = with lib; {
description = "Very resource-friendly and feature-rich replacement for i3status";
homepage = "https://github.com/greshake/i3status-rust";
license = licenses.gpl3;
maintainers = with maintainers; [ backuitist globin ma27 ];
platforms = platforms.linux;
};
}