Add libupnp, a UPnP implementation.

svn path=/nixpkgs/trunk/; revision=12995
This commit is contained in:
Ludovic Courtès 2008-10-07 21:18:01 +00:00
parent 3ce5cba9c7
commit be651cd73a
2 changed files with 29 additions and 0 deletions

@ -0,0 +1,25 @@
{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "libupnp-1.3.1";
src = fetchurl {
url = "mirror://sourceforge/upnp/${name}.tar.gz";
sha256 = "0zbng3zk4br70l8snn765nf89pmkw7wdh8gf6vxmf9r2099nl3ad";
};
meta = {
description = "libupnp, an open source UPnP development kit for Linux";
longDescription = ''
The Linux SDK for UPnP Devices (libupnp) provides developers
with an API and open source code for building control points,
devices, and bridges that are compliant with Version 1.0 of the
UPnP Device Architecture Specification.
'';
license = "BSD-style";
homepage = http://upnp.sourceforge.net/;
};
}

@ -3261,6 +3261,10 @@ let
inherit fetchurl stdenv libtool;
};
libupnp = import ../development/libraries/libupnp {
inherit fetchurl stdenv;
};
giflib = import ../development/libraries/giflib {
inherit fetchurl stdenv;
};