mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
cf5ed04f49
Provide a globally unique name (kdeApp) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
46 lines
652 B
Nix
46 lines
652 B
Nix
{ kdeApp
|
|
, lib
|
|
, extra-cmake-modules
|
|
, qtdeclarative
|
|
, cups
|
|
, kconfig
|
|
, kconfigwidgets
|
|
, kdbusaddons
|
|
, kiconthemes
|
|
, ki18n
|
|
, kcmutils
|
|
, kio
|
|
, knotifications
|
|
, plasma-framework
|
|
, kwidgetsaddons
|
|
, kwindowsystem
|
|
, kitemviews
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "print-manager";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
qtdeclarative
|
|
cups
|
|
kconfig
|
|
kconfigwidgets
|
|
kdbusaddons
|
|
kiconthemes
|
|
ki18n
|
|
kcmutils
|
|
kio
|
|
knotifications
|
|
plasma-framework
|
|
kwidgetsaddons
|
|
kwindowsystem
|
|
kitemviews
|
|
];
|
|
meta = {
|
|
license = [ lib.licenses.gpl2 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|