3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #181469 from alyssais/djvulibre-cross

This commit is contained in:
Sandro 2022-08-24 21:21:24 +02:00 committed by GitHub
commit 7a474313c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,7 @@
, libtiff , libtiff
, librsvg , librsvg
, libiconv , libiconv
, bash
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -17,13 +18,20 @@ stdenv.mkDerivation rec {
outputs = [ "bin" "dev" "out" ]; outputs = [ "bin" "dev" "out" ];
strictDeps = true;
nativeBuildInputs = [
librsvg
];
buildInputs = [ buildInputs = [
libjpeg libjpeg
libtiff libtiff
librsvg
libiconv libiconv
bash
]; ];
enableParallelBuilding = true;
meta = with lib; { meta = with lib; {
description = "The big set of CLI tools to make/modify/optimize/show/export DJVU files"; 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";