djvulibre: {adopt, clean-up, upd description}
This commit is contained in:
parent
e675e2763e
commit
eaa9f02f02
@ -1,22 +1,34 @@
|
|||||||
{ stdenv, fetchurl, libjpeg, libtiff, librsvg, libiconv }:
|
{ stdenv
|
||||||
|
, fetchurl
|
||||||
|
, libjpeg
|
||||||
|
, libtiff
|
||||||
|
, librsvg
|
||||||
|
, libiconv
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "djvulibre-3.5.27";
|
pname = "djvulibre";
|
||||||
|
version = "3.5.27";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/djvu/${name}.tar.gz";
|
url = "mirror://sourceforge/djvu/${pname}-${version}.tar.gz";
|
||||||
sha256 = "0psh3zl9dj4n4r3lx25390nx34xz0bg0ql48zdskhq354ljni5p6";
|
sha256 = "0psh3zl9dj4n4r3lx25390nx34xz0bg0ql48zdskhq354ljni5p6";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "bin" "dev" "out" ];
|
outputs = [ "bin" "dev" "out" ];
|
||||||
|
|
||||||
buildInputs = [ libjpeg libtiff librsvg libiconv ];
|
buildInputs = [
|
||||||
|
libjpeg
|
||||||
|
libtiff
|
||||||
|
librsvg
|
||||||
|
libiconv
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A library and viewer for the DJVU file format for scanned images";
|
description = "The big set of CLI tools to make/modify/optimize/show/export DJVU files";
|
||||||
homepage = http://djvu.sourceforge.net;
|
homepage = "http://djvu.sourceforge.net";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ Anton-Latukha ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user