mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
30 lines
535 B
Nix
30 lines
535 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, attica
|
|
, karchive
|
|
, kcompletion
|
|
, kconfig
|
|
, kcoreaddons
|
|
, ki18n
|
|
, kiconthemes
|
|
, kio
|
|
, kitemviews
|
|
, kservice
|
|
, ktextwidgets
|
|
, kwidgetsaddons
|
|
, kxmlgui
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "knewstuff";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
karchive kcompletion kconfig kcoreaddons ki18n kiconthemes kio
|
|
kitemviews ktextwidgets kwidgetsaddons
|
|
];
|
|
propagatedBuildInputs = [ attica kservice kxmlgui ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|