3
0
Fork 0
forked from mirrors/nixpkgs

add gssdp

svn path=/nixpkgs/trunk/; revision=10867
This commit is contained in:
Armijn Hemel 2008-02-26 20:47:30 +00:00
parent 968e4cfe3f
commit cfceb8f146

View file

@ -0,0 +1,17 @@
{stdenv, fetchurl, pkgconfig, libsoup, glib, libxml2}:
stdenv.mkDerivation {
name = "gssdp-0.4.2";
src = fetchurl {
url = http://www.gupnp.org/sources/gssdp/gssdp-0.4.2.tar.gz;
sha256 = "0d4h494qkls3hl4cc8pjhlv34nwysa9bf7xsffbd59r4dxbqziwy";
};
buildInputs = [pkgconfig libsoup glib libxml2];
meta = {
description = "A GObject-based API for handling resource discovery and announcement over SSDP.";
homepage = http://www.gupnp.org/;
license = "LGPL v2";
};
}