libupnp: 1.6.20 -> 1.6.21
Fixes CVE-2016-8863, CVE-2016-6255 cc @grahamc
This commit is contained in:
parent
6ced9ee7a4
commit
ce0e16f5ea
@ -1,28 +1,20 @@
|
|||||||
{ fetchFromGitHub, stdenv, autoconf, automake, libtool }:
|
{ fetchFromGitHub, stdenv, autoreconfHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libupnp-${version}";
|
name = "libupnp-${version}";
|
||||||
version = "1.6.20";
|
version = "1.6.21";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mrjimenez";
|
owner = "mrjimenez";
|
||||||
repo = "pupnp";
|
repo = "pupnp";
|
||||||
rev = "release-${version}";
|
rev = "release-${version}";
|
||||||
sha256 = "10583dkz1l5sjp2833smql8w428x2nbh1fni8j6h9rji6ma2yhs0";
|
sha256 = "07ksfhadinaa20542gblrxi9pqz0v6y70a836hp3qr4037id4nm9";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
autoconf
|
|
||||||
automake
|
|
||||||
libtool
|
|
||||||
];
|
|
||||||
|
|
||||||
hardeningDisable = [ "fortify" ];
|
hardeningDisable = [ "fortify" ];
|
||||||
|
|
||||||
preConfigure = ''
|
|
||||||
./bootstrap
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "libupnp, an open source UPnP development kit for Linux";
|
description = "libupnp, an open source UPnP development kit for Linux";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user