forked from mirrors/nixpkgs
kfind: init at 18.12.1
This commit is contained in:
parent
badca37c51
commit
1703627f88
|
@ -108,6 +108,7 @@ let
|
|||
kdf = callPackage ./kdf.nix {};
|
||||
kdialog = callPackage ./kdialog.nix {};
|
||||
keditbookmarks = callPackage ./keditbookmarks.nix {};
|
||||
kfind = callPackage ./kfind.nix {};
|
||||
kget = callPackage ./kget.nix {};
|
||||
kgpg = callPackage ./kgpg.nix {};
|
||||
khelpcenter = callPackage ./khelpcenter.nix {};
|
||||
|
|
17
pkgs/applications/kde/kfind.nix
Normal file
17
pkgs/applications/kde/kfind.nix
Normal file
|
@ -0,0 +1,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
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue