about summary refs log tree commit diff
path: root/nixpkgs/pkgs/kde/gear/gwenview/default.nix
blob: 2788e592ef3e28e77b6a6d6c68cd7f941691cb62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
  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
  ];
}