gd: 2.1.1 -> 2.2.1

This commit is contained in:
Franz Pletz
2016-05-30 09:49:12 +02:00
parent 8a304cc228
commit 7d580b8339
2 changed files with 4 additions and 20 deletions
+4 -7
View File
@@ -3,6 +3,7 @@
, zlib
, libjpeg
, libpng
, libwebp
, libtiff ? null
, libXpm ? null
, fontconfig
@@ -11,19 +12,15 @@
stdenv.mkDerivation rec {
name = "gd-${version}";
version = "2.1.1";
version = "2.2.1";
src = fetchurl {
url = "https://github.com/libgd/libgd/releases/download/${name}/libgd-${version}.tar.xz";
sha256 = "11djy9flzxczphigqgp7fbbblbq35gqwwhn9xfcckawlapa1xnls";
sha256 = "0xmrqka1ggqgml84xbmkw1y0r0lg7qn657v5b1my8pry92p651vh";
};
patches = [
./CVE-2016-3074.patch
];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib fontconfig freetype libjpeg libpng libtiff libXpm ];
buildInputs = [ zlib fontconfig freetype libjpeg libpng libwebp libtiff libXpm ];
outputs = [ "dev" "out" "bin" ];