Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
963 B
Nix
58 lines
963 B
Nix
{
|
|
fetchurl,
|
|
lib,
|
|
stdenv,
|
|
libconfuse,
|
|
yajl,
|
|
alsa-lib,
|
|
libpulseaudio,
|
|
libnl,
|
|
meson,
|
|
ninja,
|
|
perl,
|
|
pkg-config,
|
|
asciidoc,
|
|
xmlto,
|
|
docbook_xml_dtd_45,
|
|
docbook_xsl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "i3status";
|
|
version = "2.15";
|
|
|
|
src = fetchurl {
|
|
url = "https://i3wm.org/i3status/i3status-${version}.tar.xz";
|
|
sha256 = "sha256-bGf1LK5PE533ZK0cxzZWK+D5d1B5G8IStT80wG6vIgU=";
|
|
};
|
|
|
|
separateDebugInfo = true;
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
perl
|
|
pkg-config
|
|
asciidoc
|
|
xmlto
|
|
docbook_xml_dtd_45
|
|
docbook_xsl
|
|
];
|
|
buildInputs = [
|
|
libconfuse
|
|
yajl
|
|
alsa-lib
|
|
libpulseaudio
|
|
libnl
|
|
];
|
|
|
|
meta = {
|
|
description = "Generates a status line for i3bar, dzen2, xmobar or lemonbar";
|
|
homepage = "https://i3wm.org";
|
|
maintainers = with lib.maintainers; [ stapelberg ];
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.all;
|
|
mainProgram = "i3status";
|
|
};
|
|
|
|
}
|