Skip to content

Commit

Permalink
netpbm: 10.70.00 -> 10.77.02 for numerous fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Feb 18, 2017
1 parent 8a18e14 commit 381c2bd
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pkgs/tools/graphics/netpbm/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{ lib, stdenv, fetchurl, pkgconfig, libjpeg, libpng, flex, zlib, perl, libxml2
{ lib, stdenv, fetchsvn, pkgconfig, libjpeg, libpng, flex, zlib, perl, libxml2
, makeWrapper, libtiff
, enableX11 ? false, libX11 }:

stdenv.mkDerivation rec {
name = "netpbm-10.70.00";
# Determine version and revision from:
# https://sourceforge.net/p/netpbm/code/HEAD/log/?path=/advanced
name = "netpbm-10.77.02";

src = fetchurl {
url = "mirror://gentoo/distfiles/${name}.tar.xz";
sha256 = "14vxmzbwsy4rzrqjnzr4cvz1s0amacq69faps3v1j1kr05lcns0j";
src = fetchsvn {
url = "svn://svn.code.sf.net/p/netpbm/code/advanced";
rev = 2883;
sha256 = "1lxa5gasmqrwgihkk8ij7vb9kgdw3d5mp25kydkrf6x4wibg1w5f";
};

postPatch = /* CVE-2005-2471, from Arch */ ''
Expand Down

0 comments on commit 381c2bd

Please sign in to comment.