about summary refs log tree commit diff
path: root/pkgs/applications/graphics/minidjvu/default.nix
blob: 2829c61e95e80854c70e630bbcc05c9635b2e0b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, fetchurl, libtiff, gettext }:

stdenv.mkDerivation {
  name = "minidjvu-0.8";
  src = fetchurl {
    url = mirror://sourceforge/minidjvu/minidjvu-0.8.tar.gz;
    sha256 = "0jmpvy4g68k6xgplj9zsl6brg6vi81mx3nx2x9hfbr1f4zh95j79";
  };

  patchPhase = ''
    sed -i s,/usr/bin/gzip,gzip, Makefile.in
  '';

  buildInputs = [ libtiff gettext];

  meta = {
    homepage = http://djvu.sourceforge.net/djview4.html;
    description = "Black-and-white djvu page encoder and decoder that use interpage information";
    license = "GPLv2+";
    maintainers = [ stdenv.lib.maintainers.viric ];
  };
}