nixpkgs/pkgs/development/libraries/pupnp/default.nix
Jörg Thalheim 0a92fb9315 Revert "libupnp: 1.6.21 -> 1.8.3"
This reverts commit ee45689f14.

1.8.x branch break compatibility. This should become a new package instead.
2018-04-21 21:07:06 +01:00

34 lines
881 B
Nix

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