05bdbc55ff
Adapted from <https://apps.kde.org/>.
20 lines
513 B
Nix
20 lines
513 B
Nix
{
|
|
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";
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = [ lib.maintainers.iblech ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
karchive kcoreaddons kfilemetadata ktextwidgets kwidgetsaddons kio
|
|
];
|
|
}
|