2020-04-02 18:27:38 +02:00
|
|
|
{ fetchFromGitHub, stdenv, autoreconfHook, pkg-config }:
|
2008-10-07 23:18:01 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libupnp";
|
2020-07-13 11:16:13 +02:00
|
|
|
version = "1.14.0";
|
2008-10-07 23:18:01 +02:00
|
|
|
|
2016-12-20 21:49:20 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mrjimenez";
|
|
|
|
repo = "pupnp";
|
|
|
|
rev = "release-${version}";
|
2020-07-13 11:16:13 +02:00
|
|
|
sha256 = "1wp9sz2ld4g6ak9v59i3s5mbsraxsphi9k91vw9xgrbzfmg8w0a6";
|
2008-10-07 23:18:01 +02:00
|
|
|
};
|
2018-10-27 19:08:28 +02:00
|
|
|
outputs = [ "dev" "out" ];
|
2008-10-07 23:18:01 +02:00
|
|
|
|
2020-04-02 18:27:38 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2016-12-20 21:49:20 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "fortify" ];
|
2015-12-23 02:59:47 +01:00
|
|
|
|
2008-10-07 23:18:01 +02:00
|
|
|
meta = {
|
2020-10-26 05:08:40 +01:00
|
|
|
description = "An open source UPnP development kit for Linux";
|
2008-10-07 23:18:01 +02:00
|
|
|
|
|
|
|
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";
|
|
|
|
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://pupnp.sourceforge.net/";
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-10-07 23:18:01 +02:00
|
|
|
};
|
|
|
|
}
|