mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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.
This commit is contained in:
parent
fe3dd6df73
commit
12284fff17
1 changed files with 4 additions and 4 deletions
|
@ -1,15 +1,15 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "jbig2dec-0.11";
|
||||
name = "jbig2dec-0.13";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/jbig2dec/${name}.tar.xz";
|
||||
sha256 = "1xddc30garsg5j8p348cz5l8vn8j7723c0sykv0kc1w5ihaghsq1";
|
||||
url = "http://downloads.ghostscript.com/public/jbig2dec/${name}.tar.gz";
|
||||
sha256 = "04akiwab8iy5iy34razcvh9mcja9wy737civ3sbjxk4j143s1b2s";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://jbig2dec.sourceforge.net/;
|
||||
homepage = https://www.ghostscript.com/jbig2dec.html;
|
||||
description = "Decoder implementation of the JBIG2 image compression format";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
|
|
Loading…
Reference in a new issue