mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
36 lines
494 B
Nix
36 lines
494 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
qtwayland,
|
|
qtimageformats,
|
|
pkg-config,
|
|
cfitsio,
|
|
exiv2,
|
|
baloo,
|
|
kimageannotator,
|
|
lcms2,
|
|
libtiff,
|
|
wayland,
|
|
wayland-protocols,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "gwenview";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [
|
|
qtsvg
|
|
qtwayland
|
|
# adds support for webp and other image formats
|
|
qtimageformats
|
|
|
|
cfitsio
|
|
exiv2
|
|
baloo
|
|
kimageannotator
|
|
lcms2
|
|
libtiff
|
|
wayland
|
|
wayland-protocols
|
|
];
|
|
}
|