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
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
scdoc,
|
|
wrapGAppsHook4,
|
|
gtk4,
|
|
qrencode,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "iwgtk";
|
|
version = "0.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "j-lentz";
|
|
repo = "iwgtk";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-/Nxti4PfYVLnIiBgtAuR3KGI8dULszuSdTp+2DzBfbs=";
|
|
};
|
|
|
|
# patch systemd service to pass necessary environments and use absolute paths
|
|
patches = [ ./systemd-service.patch ];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
scdoc
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk4
|
|
qrencode
|
|
];
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/lib/systemd/user/iwgtk.service --subst-var out
|
|
'';
|
|
|
|
meta = {
|
|
description = "Lightweight, graphical wifi management utility for Linux";
|
|
homepage = "https://github.com/j-lentz/iwgtk";
|
|
changelog = "https://github.com/j-lentz/iwgtk/blob/v${version}/CHANGELOG";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ figsoda ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "iwgtk";
|
|
};
|
|
}
|