mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
ee45689f14
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.8.3 with grep in /nix/store/54dv1yd3bi54ci4kvlj9j7jc1khxm1ax-libupnp-1.8.3 - directory tree listing: https://gist.github.com/b72d1e3b6abc82c6c158d097f98780b9
34 lines
880 B
Nix
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;
|
|
};
|
|
}
|