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}";
|
2018-06-12 10:09:43 -07:00
|
|
|
version = "1.8.3";
|
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}";
|
2018-06-12 10:09:43 -07:00
|
|
|
sha256 = "1w0kfq1pg3y2wl6gwkm1w872g0qz29w1z9wj08xxmwnk5mkpvsrl";
|
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
|
|
|
};
|
|
|
|
}
|