mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
81aac8d84d
svn path=/nixpkgs/trunk/; revision=10417
22 lines
487 B
Nix
22 lines
487 B
Nix
args: with args;
|
|
stdenv.mkDerivation {
|
|
name = "djvulibre-3.5.19";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/djvu/djvulibre-3.5.19.tar.gz;
|
|
sha256 = "0y6d9ka42llm7h64fc73s4wqcbxg31kallyfaarhkqsxyiaa3zsp";
|
|
};
|
|
|
|
buildInputs = [qt libX11 libjpeg libtiff libpng ghostscript zlib libungif
|
|
x11 mesa];
|
|
|
|
meta = {
|
|
description = "
|
|
DjVu libre - a library and a viewer for djvu format - compression for
|
|
scanned images.
|
|
";
|
|
homepage = http://djvu.sourceforge.net;
|
|
};
|
|
}
|
|
|