nixpkgs/pkgs/development/libraries/pupnp/default.nix
R. RyanTM ce0f4a1b93 libupnp: 1.6.21 -> 1.8.3 (#41684)
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.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 1.8.3 with grep in /nix/store/ymhnn5lpxcs62nkzd1m42yaqqa7iwy66-libupnp-1.8.3
- directory tree listing: https://gist.github.com/c259447b3ed649aa6f8b474103c44f2c
- du listing: https://gist.github.com/4c95913fe86ccf5adf874748002bc31d
2018-06-12 19:09:43 +02:00

34 lines
880 B
Nix

{ fetchFromGitHub, stdenv, autoreconfHook }:
stdenv.mkDerivation rec {
name = "libupnp-${version}";
version = "1.8.3";
src = fetchFromGitHub {
owner = "mrjimenez";
repo = "pupnp";
rev = "release-${version}";
sha256 = "1w0kfq1pg3y2wl6gwkm1w872g0qz29w1z9wj08xxmwnk5mkpvsrl";
};
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;
};
}