lol
at v206 25 lines 681 B view raw
1{ fetchurl, stdenv }: 2 3stdenv.mkDerivation rec { 4 name = "libupnp-1.6.19"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/pupnp/${name}.tar.bz2"; 8 sha256 = "0amjv4lypvclmi4vim2qdyw5xa6v4x50zjgf682vahqjc0wjn55k"; 9 }; 10 11 meta = { 12 description = "libupnp, an open source UPnP development kit for Linux"; 13 14 longDescription = '' 15 The Linux SDK for UPnP Devices (libupnp) provides developers 16 with an API and open source code for building control points, 17 devices, and bridges that are compliant with Version 1.0 of the 18 UPnP Device Architecture Specification. 19 ''; 20 21 license = "BSD-style"; 22 23 homepage = http://pupnp.sourceforge.net/; 24 }; 25}