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

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

46 lines
1.1 KiB
Nix
Raw Normal View History

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