repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-5
/
modules
/
qtimageformats.nix
blob
4775bb0b0383f6f9160e7015e79ae8abbc8b9869
1
{ lib
2
, stdenv
3
, qtModule
4
, qtbase
5
, libwebp
6
, jasper
7
, libmng
8
, libtiff
9
}:
10
11
qtModule {
12
pname = "qtimageformats";
13
propagatedBuildInputs = [
14
qtbase libwebp
15
] ++ lib.optionals (!jasper.meta.broken) [
16
jasper
17
] ++ [
18
libmng libtiff
19
];
20
}