forked from mirrors/nixpkgs
add gssdp
svn path=/nixpkgs/trunk/; revision=10867
This commit is contained in:
parent
968e4cfe3f
commit
cfceb8f146
17
pkgs/development/libraries/gssdp/default.nix
Normal file
17
pkgs/development/libraries/gssdp/default.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue