summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-15.12/kdenetwork-filesharing.nix
blob: 4e99a43b3913a1a83f917e737d22aff13ae90059 (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
{ kdeApp
, lib
, extra-cmake-modules
, kdoctools
, kcoreaddons
, ki18n
, kio
, kwidgetsaddons
, samba
}:

kdeApp {
  name = "kdenetwork-filesharing";
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
  ];
  buildInputs = [
    kcoreaddons
    ki18n
    kio
    kwidgetsaddons
    samba
  ];
  meta = {
    license = [ lib.licenses.gpl2 lib.licenses.lgpl21 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
}