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

mkDerivation {
  pname = "kfind";
  meta = {
    homepage = "https://apps.kde.org/kfind/";
    description = "Find files/folders";
    mainProgram = "kfind";
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.iblech ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    karchive kcoreaddons kfilemetadata ktextwidgets kwidgetsaddons kio
  ];
}