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

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