2017-01-18 06:49:34 -08:00
|
|
|
{ fetchFromGitHub, stdenv, autoreconfHook }:
|
2008-10-07 14:18:01 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-12-20 12:49:20 -08:00
|
|
|
name = "libupnp-${version}";
|
2017-01-18 06:49:34 -08:00
|
|
|
version = "1.6.21";
|
2008-10-07 14:18:01 -07:00
|
|
|
|
2016-12-20 12:49:20 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mrjimenez";
|
|
|
|
repo = "pupnp";
|
|
|
|
rev = "release-${version}";
|
2017-01-18 06:49:34 -08:00
|
|
|
sha256 = "07ksfhadinaa20542gblrxi9pqz0v6y70a836hp3qr4037id4nm9";
|
2008-10-07 14:18:01 -07:00
|
|
|
};
|
|
|
|
|
2017-01-18 06:49:34 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2016-12-20 12:49:20 -08:00
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "fortify" ];
|
2015-12-22 17:59:47 -08:00
|
|
|
|
2008-10-07 14:18:01 -07:00
|
|
|
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";
|
|
|
|
|
2008-10-08 13:03:35 -07:00
|
|
|
homepage = http://pupnp.sourceforge.net/;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-10-07 14:18:01 -07:00
|
|
|
};
|
|
|
|
}
|