summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix
blob: 319c7fc6583d7191cf057a5fc9a9f137180b6dc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ kdeApp
, lib
, extra-cmake-modules
, libraw
}:

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