libupnp: 1.6.20 -> 1.6.21

Fixes CVE-2016-8863, CVE-2016-6255

cc @grahamc
This commit is contained in:
Robin Gloster 2017-01-18 15:49:34 +01:00
parent 6ced9ee7a4
commit ce0e16f5ea
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882

View File

@ -1,28 +1,20 @@
{ fetchFromGitHub, stdenv, autoconf, automake, libtool }:
{ fetchFromGitHub, stdenv, autoreconfHook }:
stdenv.mkDerivation rec {
name = "libupnp-${version}";
version = "1.6.20";
version = "1.6.21";
src = fetchFromGitHub {
owner = "mrjimenez";
repo = "pupnp";
rev = "release-${version}";
sha256 = "10583dkz1l5sjp2833smql8w428x2nbh1fni8j6h9rji6ma2yhs0";
sha256 = "07ksfhadinaa20542gblrxi9pqz0v6y70a836hp3qr4037id4nm9";
};
buildInputs = [
autoconf
automake
libtool
];
nativeBuildInputs = [ autoreconfHook ];
hardeningDisable = [ "fortify" ];
preConfigure = ''
./bootstrap
'';
meta = {
description = "libupnp, an open source UPnP development kit for Linux";