nixpkgs/pkgs/applications/kde/kfind.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
513 B
Nix
Raw Normal View History

2019-03-14 18:23:46 +00:00
{
mkDerivation, lib,
extra-cmake-modules, kdoctools,
karchive, kcoreaddons, kfilemetadata, ktextwidgets, kwidgetsaddons, kio
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kfind";
2019-03-14 18:23:46 +00:00
meta = {
homepage = "https://apps.kde.org/kfind/";
description = "Find files/folders";
2019-03-14 18:23:46 +00:00
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.iblech ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
karchive kcoreaddons kfilemetadata ktextwidgets kwidgetsaddons kio
];
}