about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/gssdp/tools.nix
blob: 5fcd0219a94580d748e870055e270d15643701ec (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
44
45
46
47
48
49
50
{ stdenv
, lib
, substituteAll
, meson
, ninja
, pkg-config
, wrapGAppsHook4
, gssdp_1_6
, gtk4
, libsoup_3
}:

stdenv.mkDerivation rec {
  pname = "gssdp-tools";
  inherit (gssdp_1_6) version src;

  patches = [
    # Allow building tools separately from the library.
    # This is needed to break the depenency cycle.
    (substituteAll {
      src = ./standalone-tools.patch;
      inherit version;
    })
  ];

  nativeBuildInputs = [
    meson
    ninja
    pkg-config
    wrapGAppsHook4
  ];

  buildInputs = [
    gssdp_1_6
    gtk4
    libsoup_3
  ];

  preConfigure = ''
    cd tools
  '';

  meta = with lib; {
    description = "Device Sniffer tool based on GSSDP framework";
    homepage = "http://www.gupnp.org/";
    license = licenses.lgpl2Plus;
    maintainers = gssdp_1_6.meta.maintainers;
    platforms = platforms.all;
  };
}