jbig2dec: 0.11 -> 0.13, new upstream location

The most recent version on the sourceforge page is 0.11 which is quite
old; the official upstream site has 0.13; judging by the commit delta,
there've been quite a few bug fixes etc since 0.11.

+4 -4
+4 -4
pkgs/development/libraries/jbig2dec/default.nix
··· 1 { stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 - name = "jbig2dec-0.11"; 5 6 src = fetchurl { 7 - url = "mirror://sourceforge/jbig2dec/${name}.tar.xz"; 8 - sha256 = "1xddc30garsg5j8p348cz5l8vn8j7723c0sykv0kc1w5ihaghsq1"; 9 }; 10 11 meta = { 12 - homepage = http://jbig2dec.sourceforge.net/; 13 description = "Decoder implementation of the JBIG2 image compression format"; 14 license = stdenv.lib.licenses.gpl2Plus; 15 platforms = stdenv.lib.platforms.unix;
··· 1 { stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 + name = "jbig2dec-0.13"; 5 6 src = fetchurl { 7 + url = "http://downloads.ghostscript.com/public/jbig2dec/${name}.tar.gz"; 8 + sha256 = "04akiwab8iy5iy34razcvh9mcja9wy737civ3sbjxk4j143s1b2s"; 9 }; 10 11 meta = { 12 + homepage = https://www.ghostscript.com/jbig2dec.html; 13 description = "Decoder implementation of the JBIG2 image compression format"; 14 license = stdenv.lib.licenses.gpl2Plus; 15 platforms = stdenv.lib.platforms.unix;