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

stdenv.mkDerivation {
  name = "gssdp-0.14.11";

  src = fetchurl {
    url = mirror://gnome/sources/gssdp/0.14/gssdp-0.14.11.tar.xz;
    sha256 = "0njkqr2y7c6linnw4wkc4y2vq5dfkpryqcinbzn0pzhr46psxxbv";
  };

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

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