summary refs log tree commit diff
path: root/pkgs/development/libraries/jbig2dec/default.nix
blob: 123379d788dc4fc6245096687cc37d5c8ddcb3a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "jbig2dec-0.11";

  src = fetchurl {
    url = "mirror://sourceforge/jbig2dec/${name}.tar.xz";
    sha256 = "1xddc30garsg5j8p348cz5l8vn8j7723c0sykv0kc1w5ihaghsq1";
  };

  meta = {
    homepage = http://jbig2dec.sourceforge.net/;
    description = "Decoder implementation of the JBIG2 image compression format";
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.unix;
  };
}