about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/iwgtk/default.nix
blob: 0c72c41ce626b7286af262c8c66c5162b9201b18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ 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 = pname;
    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 = 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 ];
  };
}