at 15.09-beta 21 lines 598 B view raw
1{ stdenv, fetchurl, pkgconfig, libsoup, glib }: 2 3stdenv.mkDerivation { 4 name = "gssdp-0.14.11"; 5 6 src = fetchurl { 7 url = mirror://gnome/sources/gssdp/0.14/gssdp-0.14.11.tar.xz; 8 sha256 = "0njkqr2y7c6linnw4wkc4y2vq5dfkpryqcinbzn0pzhr46psxxbv"; 9 }; 10 11 nativeBuildInputs = [ pkgconfig ]; 12 buildInputs = [ libsoup ]; 13 propagatedBuildInputs = [ glib ]; 14 15 meta = { 16 description = "GObject-based API for handling resource discovery and announcement over SSDP"; 17 homepage = http://www.gupnp.org/; 18 license = stdenv.lib.licenses.lgpl2; 19 platforms = stdenv.lib.platforms.all; 20 }; 21}