summary refs log tree commit diff
path: root/pkgs/development/libraries/pupnp
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-01-18 15:49:34 +0100
committerRobin Gloster <mail@glob.in>2017-01-18 15:56:15 +0100
commitce0e16f5ea0285bfb4c8a0bdf795e53684289d5d (patch)
tree1a5cf83cba25b13a4e60964de410b2fb26c03f38 /pkgs/development/libraries/pupnp
parent6ced9ee7a49081d3019dfa10ae49af83a12d038f (diff)
downloadnixpkgs-ce0e16f5ea0285bfb4c8a0bdf795e53684289d5d.tar
nixpkgs-ce0e16f5ea0285bfb4c8a0bdf795e53684289d5d.tar.gz
nixpkgs-ce0e16f5ea0285bfb4c8a0bdf795e53684289d5d.tar.bz2
nixpkgs-ce0e16f5ea0285bfb4c8a0bdf795e53684289d5d.tar.lz
nixpkgs-ce0e16f5ea0285bfb4c8a0bdf795e53684289d5d.tar.xz
nixpkgs-ce0e16f5ea0285bfb4c8a0bdf795e53684289d5d.tar.zst
nixpkgs-ce0e16f5ea0285bfb4c8a0bdf795e53684289d5d.zip
libupnp: 1.6.20 -> 1.6.21
Fixes CVE-2016-8863, CVE-2016-6255

cc @grahamc
Diffstat (limited to 'pkgs/development/libraries/pupnp')
-rw-r--r--pkgs/development/libraries/pupnp/default.nix16
1 files changed, 4 insertions, 12 deletions
diff --git a/pkgs/development/libraries/pupnp/default.nix b/pkgs/development/libraries/pupnp/default.nix
index 389e575dbb1..fd738faf507 100644
--- a/pkgs/development/libraries/pupnp/default.nix
+++ b/pkgs/development/libraries/pupnp/default.nix
@@ -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";