2013-09-07 02:09:11 +02:00
|
|
|
{ stdenv, fetchurl, libjpeg, libtiff, librsvg, libintlOrEmpty }:
|
2009-03-03 14:27:40 +01:00
|
|
|
|
2011-07-11 16:29:27 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-12 20:32:24 +01:00
|
|
|
name = "djvulibre-3.5.27";
|
2007-07-01 22:11:32 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-07-11 16:29:27 +02:00
|
|
|
url = "mirror://sourceforge/djvu/${name}.tar.gz";
|
2015-02-12 20:32:24 +01:00
|
|
|
sha256 = "0psh3zl9dj4n4r3lx25390nx34xz0bg0ql48zdskhq354ljni5p6";
|
2007-07-01 22:11:32 +02:00
|
|
|
};
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "bin" "dev" "out" ];
|
2015-10-28 19:36:40 +01:00
|
|
|
|
2013-09-07 02:09:11 +02:00
|
|
|
buildInputs = [ libjpeg libtiff librsvg ] ++ libintlOrEmpty;
|
|
|
|
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
2007-07-01 22:11:32 +02:00
|
|
|
|
2015-03-27 22:09:22 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "A library and viewer for the DJVU file format for scanned images";
|
2008-01-30 20:49:42 +01:00
|
|
|
homepage = http://djvu.sourceforge.net;
|
2015-03-27 22:09:22 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ urkud ];
|
|
|
|
platforms = platforms.all;
|
2007-07-01 22:11:32 +02:00
|
|
|
};
|
|
|
|
}
|