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

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

  src = fetchurl {
    url = mirror://gnome/sources/gssdp/0.12/gssdp-0.12.2.1.tar.xz;
    sha256 = "0544f9nv6dpnfd0qbmxm8xwqjh8dafcmf3vlzkdly12xh5bs52lj";
  };

  buildInputs = [pkgconfig libsoup glib libxml2];

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