libupnp: 1.6.20 -> 1.6.21

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

cc @grahamc

+4 -12
+4 -12
pkgs/development/libraries/pupnp/default.nix
··· 1 - { fetchFromGitHub, stdenv, autoconf, automake, libtool }: 1 + { fetchFromGitHub, stdenv, autoreconfHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "libupnp-${version}"; 5 - version = "1.6.20"; 5 + version = "1.6.21"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mrjimenez"; 9 9 repo = "pupnp"; 10 10 rev = "release-${version}"; 11 - sha256 = "10583dkz1l5sjp2833smql8w428x2nbh1fni8j6h9rji6ma2yhs0"; 11 + sha256 = "07ksfhadinaa20542gblrxi9pqz0v6y70a836hp3qr4037id4nm9"; 12 12 }; 13 13 14 - buildInputs = [ 15 - autoconf 16 - automake 17 - libtool 18 - ]; 14 + nativeBuildInputs = [ autoreconfHook ]; 19 15 20 16 hardeningDisable = [ "fortify" ]; 21 - 22 - preConfigure = '' 23 - ./bootstrap 24 - ''; 25 17 26 18 meta = { 27 19 description = "libupnp, an open source UPnP development kit for Linux";