summary refs log tree commit diff
path: root/pkgs/applications/kde/libkdcraw.nix
blob: 179e9f414dc32e836af957e7f44fbee463ea0301 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ kdeApp, lib, extra-cmake-modules, libraw, qtbase }:

kdeApp {
  name = "libkdcraw";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 bsd3 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qtbase ];
  propagatedBuildInputs = [ libraw ];
}