summary refs log tree commit diff
path: root/pkgs/applications/kde/kdenetwork-filesharing.nix
blob: a7da03ffdd145cbee9ced57e790af831d0b7fd3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  kcoreaddons, kdeclarative, ki18n, kio, kwidgetsaddons, samba, qtbase,
}:

mkDerivation {
  pname = "kdenetwork-filesharing";
  meta = {
    license = [ lib.licenses.gpl2 lib.licenses.lgpl21 ];
    maintainers = [ lib.maintainers.ttuegel ];
    broken = lib.versionOlder qtbase.version "5.13";
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ kcoreaddons kdeclarative ki18n kio kwidgetsaddons samba ];
}