1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 22:50:49 +00:00
nixpkgs/pkgs/applications/kde-apps-15.08/print-manager.nix

48 lines
685 B
Nix
Raw Normal View History

{ kdeApp
2015-09-27 16:03:46 +01:00
, lib
, extra-cmake-modules
, qtdeclarative
, cups
, kconfig
, kconfigwidgets
, kdbusaddons
, kiconthemes
, ki18n
, kcmutils
, kio
, knotifications
, plasma-framework
, kwidgetsaddons
, kwindowsystem
, kitemviews
}:
kdeApp {
2015-09-27 16:03:46 +01:00
name = "print-manager";
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
cups
kconfig
kconfigwidgets
kdbusaddons
kiconthemes
kcmutils
knotifications
kwidgetsaddons
kitemviews
];
2015-10-10 17:50:36 +01:00
propagatedBuildInputs = [
ki18n
2015-10-10 18:29:20 +01:00
kio
2015-10-10 18:42:19 +01:00
kwindowsystem
plasma-framework
2015-10-10 18:29:20 +01:00
qtdeclarative
2015-10-10 17:50:36 +01:00
];
2015-09-27 16:03:46 +01:00
meta = {
license = [ lib.licenses.gpl2 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}