nixpkgs/pkgs/tools/networking/iwgtk/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.0 KiB
Nix
Raw Normal View History

2022-09-06 21:30:05 +03:00
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, scdoc
2022-10-09 21:06:41 +03:00
, wrapGAppsHook4
2022-09-06 21:30:05 +03:00
, gtk4
, qrencode
}:
2021-07-21 04:44:41 +03:00
stdenv.mkDerivation rec {
pname = "iwgtk";
version = "0.9";
2021-07-21 04:44:41 +03:00
src = fetchFromGitHub {
owner = "j-lentz";
repo = pname;
rev = "v${version}";
sha256 = "sha256-/Nxti4PfYVLnIiBgtAuR3KGI8dULszuSdTp+2DzBfbs=";
2021-07-21 04:44:41 +03:00
};
2022-09-06 21:30:05 +03:00
# patch systemd service to pass necessary environments and use absolute paths
patches = [ ./systemd-service.patch ];
2021-07-21 04:44:41 +03:00
2022-10-09 21:06:41 +03:00
nativeBuildInputs = [ meson ninja pkg-config scdoc wrapGAppsHook4 ];
2021-07-21 04:44:41 +03:00
2022-09-06 21:30:05 +03:00
buildInputs = [ gtk4 qrencode ];
postInstall = ''
substituteInPlace $out/lib/systemd/user/iwgtk.service --subst-var out
2022-09-06 21:30:05 +03:00
'';
2021-07-21 04:44:41 +03:00
meta = with lib; {
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 = licenses.gpl3Only;
maintainers = with maintainers; [ figsoda ];
platforms = platforms.linux;
mainProgram = "iwgtk";
2021-07-21 04:44:41 +03:00
};
}