summary refs log tree commit diff
path: root/pkgs/development/libraries/gssdp/default.nix
blob: 55e20065732c78e9d24f058769ce16ca949b2e17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pkgconfig, libsoup, glib }:

stdenv.mkDerivation rec {
  name = "gssdp-${version}";
  version = "1.0.1";

  src = fetchurl {
    url = "mirror://gnome/sources/gssdp/1.0/${name}.tar.xz";
    sha256 = "1qfj4gir1qf6v86z70ryzmjb75ns30q6zi5p89vhd3621gs6f7b0";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libsoup ];
  propagatedBuildInputs = [ glib ];

  meta = with stdenv.lib; {
    description = "GObject-based API for handling resource discovery and announcement over SSDP";
    homepage = http://www.gupnp.org/;
    license = licenses.lgpl2;
    platforms = platforms.all;
  };
}