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

  patches = [
    # Remove hardcoded smbd search path
    ./0001-Remove-impure-smbd-search-path.patch
    # When running a process through systemd, resolve the full path ourselves
    ./early-resolve-executables.diff
    # FIXME(later): discuss with upstream?
  ];

  extraBuildInputs = [qt5compat qttools acl attr];
}