ce77225e21
This is the thing you want to look at.
32 lines
405 B
Nix
32 lines
405 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
qtwayland,
|
|
pkg-config,
|
|
cfitsio,
|
|
exiv2,
|
|
baloo,
|
|
kimageannotator,
|
|
lcms2,
|
|
libtiff,
|
|
wayland,
|
|
wayland-protocols,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "gwenview";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [
|
|
qtsvg
|
|
qtwayland
|
|
|
|
cfitsio
|
|
exiv2
|
|
baloo
|
|
kimageannotator
|
|
lcms2
|
|
libtiff
|
|
wayland
|
|
wayland-protocols
|
|
];
|
|
}
|