about summary refs log tree commit diff
path: root/pkgs/kde/frameworks/kio/default.nix
blob: 03c2da9e0f5ad43a4d2e010f18bf2d6c8a9ae3bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkKdeDerivation,
  qt5compat,
  qttools,
  acl,
  attr,
}:
mkKdeDerivation {
  pname = "kio";

  patches = [
    # Remove hardcoded smbd search path
    # FIXME(later): discuss with upstream?
    ./0001-Remove-impure-smbd-search-path.patch
  ];

  extraBuildInputs = [qt5compat qttools acl attr];
}