summary refs log blame commit diff
path: root/pkgs/applications/graphics/minidjvu/default.nix
blob: e354837f4b871d76487eda2e6675187939405959 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                    
                 
                     

     


                                                                                                 
                                           


                                                   
{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];

  preInstall = ''
    mkdir -p $out/lib
  '';

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