2015-08-03 21:32:11 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libsoup, glib }:
|
2008-02-26 20:47:30 +00:00
|
|
|
|
2017-03-13 00:41:00 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gssdp-${version}";
|
2018-03-09 00:35:55 +00:00
|
|
|
version = "1.0.2";
|
2012-03-13 19:06:03 +00:00
|
|
|
|
2008-02-26 20:47:30 +00:00
|
|
|
src = fetchurl {
|
2017-03-13 00:41:00 +00:00
|
|
|
url = "mirror://gnome/sources/gssdp/1.0/${name}.tar.xz";
|
2018-03-09 00:35:55 +00:00
|
|
|
sha256 = "1p1m2m3ndzr2whipqw4vfb6s6ia0g7rnzzc4pnq8b8g1qw4prqd1";
|
2008-02-26 20:47:30 +00:00
|
|
|
};
|
|
|
|
|
2015-08-03 21:32:11 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libsoup ];
|
|
|
|
propagatedBuildInputs = [ glib ];
|
2008-02-26 20:47:30 +00:00
|
|
|
|
2017-03-13 00:41:00 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "GObject-based API for handling resource discovery and announcement over SSDP";
|
2008-02-26 20:47:30 +00:00
|
|
|
homepage = http://www.gupnp.org/;
|
2017-03-13 00:41:00 +00:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
platforms = platforms.all;
|
2008-02-26 20:47:30 +00:00
|
|
|
};
|
|
|
|
}
|