nixpkgs-suyu/pkgs/applications/misc/djvulibre/default.nix

23 lines
621 B
Nix
Raw Normal View History

2018-03-14 20:15:06 +01:00
{ stdenv, fetchurl, libjpeg, libtiff, librsvg, libiconv }:
stdenv.mkDerivation rec {
name = "djvulibre-3.5.27";
src = fetchurl {
url = "mirror://sourceforge/djvu/${name}.tar.gz";
sha256 = "0psh3zl9dj4n4r3lx25390nx34xz0bg0ql48zdskhq354ljni5p6";
};
outputs = [ "bin" "dev" "out" ];
2015-10-28 19:36:40 +01:00
2018-03-14 20:15:06 +01:00
buildInputs = [ libjpeg libtiff librsvg libiconv ];
2015-03-27 22:09:22 +01:00
meta = with stdenv.lib; {
description = "A library and viewer for the DJVU file format for scanned images";
homepage = http://djvu.sourceforge.net;
2015-03-27 22:09:22 +01:00
license = licenses.gpl2;
maintainers = with maintainers; [ ];
2015-03-27 22:09:22 +01:00
platforms = platforms.all;
};
}