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}";
|
|
|
|
version = "1.0.1";
|
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";
|
|
|
|
sha256 = "1qfj4gir1qf6v86z70ryzmjb75ns30q6zi5p89vhd3621gs6f7b0";
|
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
|
|
|
};
|
|
|
|
}
|