nixpkgs/pkgs/applications/kde/kdf.nix

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

33 lines
447 B
Nix
Raw Normal View History

2016-08-26 06:36:45 +00:00
{
mkDerivation,
lib,
extra-cmake-modules,
kdoctools,
kcmutils,
ki18n,
kiconthemes,
kio,
knotifications,
kxmlgui,
2016-08-26 06:36:45 +00:00
}:
2017-05-16 15:56:41 +00:00
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kdf";
2017-05-16 15:56:41 +00:00
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.peterhoeg ];
};
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
kcmutils
ki18n
kiconthemes
kio
knotifications
kxmlgui
];
}