nixpkgs/pkgs/development/libraries/pupnp/default.nix
R. RyanTM 154d026917 libupnp: 1.8.3 -> 1.8.4 (#49268)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libupnp/versions
2018-10-27 11:53:16 -04:00

33 lines
880 B
Nix

{ fetchFromGitHub, stdenv, autoreconfHook }:
stdenv.mkDerivation rec {
name = "libupnp-${version}";
version = "1.8.4";
src = fetchFromGitHub {
owner = "mrjimenez";
repo = "pupnp";
rev = "release-${version}";
sha256 = "1daml02z4rs9cxls95p2v24jvwcsp43a0gqv06s84ay5yn6r47wx";
};
nativeBuildInputs = [ autoreconfHook ];
hardeningDisable = [ "fortify" ];
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://pupnp.sourceforge.net/;
platforms = stdenv.lib.platforms.unix;
};
}