mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
libpng-1.2.47 (see CVE 2011-3026)
svn path=/nixpkgs/trunk/; revision=32394
This commit is contained in:
parent
d77cfce6d3
commit
668a505214
2 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, ruby, qt4, pkgconfig, libsamplerate, fftwSinglePrec }:
|
||||
{ stdenv, fetchurl, ruby, qt4, pkgconfig, libsamplerate, fftwSinglePrec, which }:
|
||||
|
||||
let version = "0.3.3"; in
|
||||
|
||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
prefixKey = "--prefix ";
|
||||
propagatedBuildInputs = [ qt4 libsamplerate fftwSinglePrec ];
|
||||
buildNativeInputs = [ ruby pkgconfig ];
|
||||
buildNativeInputs = [ ruby pkgconfig which ];
|
||||
|
||||
configureFlags = "--release";
|
||||
|
||||
|
|
|
@ -4,11 +4,11 @@ assert zlib != null;
|
|||
|
||||
# If you want to upgrade libpng, look at libpng15 branch
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libpng-1.2.46";
|
||||
name = "libpng-1.2.47";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/libpng/${name}.tar.xz";
|
||||
sha256 = "0rcx4v4khdkrvz7b02fmx7lab2pk1lal4dhx9widv36b7g2xvwzn";
|
||||
sha256 = "1lai3dnzw81y40jr17bdj1qh08hwv9mc1v74yybl7jdx2hiilsvx";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ zlib ];
|
||||
|
|
Loading…
Reference in a new issue