Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

85 lines
2.0 KiB
Nix

{
fetchFromGitHub,
lib,
stdenv,
perl,
makeWrapper,
iproute2,
acpi,
sysstat,
alsa-utils,
scripts ? [
"bandwidth"
"battery"
"cpu_usage"
"disk"
"iface"
"load_average"
"memory"
"volume"
"wifi"
],
}:
let
perlscripts = [
"battery"
"cpu_usage"
"openvpn"
"temperature"
];
contains_any = l1: l2: 0 < lib.length (lib.intersectLists l1 l2);
in
stdenv.mkDerivation rec {
pname = "i3blocks-gaps";
version = "1.4";
src = fetchFromGitHub {
owner = "Airblader";
repo = "i3blocks-gaps";
rev = "4cfdf93c75f729a2c96d471004d31734e923812f";
sha256 = "0v9307ij8xzwdaxay3r75sd2cp453s3qb6q7dy9fks2p6wwqpazi";
};
makeFlags = [ "all" ];
installFlags = [
"PREFIX=\${out}"
"VERSION=${version}"
];
buildInputs = lib.optional (contains_any scripts perlscripts) perl;
nativeBuildInputs = [ makeWrapper ];
postFixup =
lib.optionalString (lib.elem "bandwidth" scripts) ''
wrapProgram $out/libexec/i3blocks/bandwidth \
--prefix PATH : ${lib.makeBinPath [ iproute2 ]}
''
+ lib.optionalString (lib.elem "battery" scripts) ''
wrapProgram $out/libexec/i3blocks/battery \
--prefix PATH : ${lib.makeBinPath [ acpi ]}
''
+ lib.optionalString (lib.elem "cpu_usage" scripts) ''
wrapProgram $out/libexec/i3blocks/cpu_usage \
--prefix PATH : ${lib.makeBinPath [ sysstat ]}
''
+ lib.optionalString (lib.elem "iface" scripts) ''
wrapProgram $out/libexec/i3blocks/iface \
--prefix PATH : ${lib.makeBinPath [ iproute2 ]}
''
+ lib.optionalString (lib.elem "volume" scripts) ''
wrapProgram $out/libexec/i3blocks/volume \
--prefix PATH : ${lib.makeBinPath [ alsa-utils ]}
'';
meta = with lib; {
description = "Flexible scheduler for your i3bar blocks -- this is a fork to use with i3-gaps";
mainProgram = "i3blocks";
homepage = "https://github.com/Airblader/i3blocks-gaps";
license = licenses.gpl3;
maintainers = with maintainers; [ carlsverre ];
platforms = platforms.linux;
};
}