summary refs log tree commit diff
path: root/pkgs/applications/kde/kfind.nix
blob: 10932b38032ca45788764e23ad6f0ab0572cfa4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  karchive, kcoreaddons, kfilemetadata, ktextwidgets, kwidgetsaddons, kio
}:

mkDerivation {
  name = "kfind";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.iblech ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    karchive kcoreaddons kfilemetadata ktextwidgets kwidgetsaddons kio
  ];
}