summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-16.04/print-manager.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-04-21 11:00:51 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-04-25 19:04:24 -0500
commit3dded2e72a18644f81a60fa8b63e33b74f66e799 (patch)
tree3e2ab114dcf48c56e4f1351c49e131dc93e72016 /pkgs/desktops/kde-5/applications-16.04/print-manager.nix
parenteb604134f7fdd95c78d7979e826cd165b1f627f2 (diff)
downloadnixpkgs-3dded2e72a18644f81a60fa8b63e33b74f66e799.tar
nixpkgs-3dded2e72a18644f81a60fa8b63e33b74f66e799.tar.gz
nixpkgs-3dded2e72a18644f81a60fa8b63e33b74f66e799.tar.bz2
nixpkgs-3dded2e72a18644f81a60fa8b63e33b74f66e799.tar.lz
nixpkgs-3dded2e72a18644f81a60fa8b63e33b74f66e799.tar.xz
nixpkgs-3dded2e72a18644f81a60fa8b63e33b74f66e799.tar.zst
nixpkgs-3dded2e72a18644f81a60fa8b63e33b74f66e799.zip
kde5_latest.applications: 15.12.03 -> 16.04.0
Diffstat (limited to 'pkgs/desktops/kde-5/applications-16.04/print-manager.nix')
-rw-r--r--pkgs/desktops/kde-5/applications-16.04/print-manager.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/desktops/kde-5/applications-16.04/print-manager.nix b/pkgs/desktops/kde-5/applications-16.04/print-manager.nix
new file mode 100644
index 00000000000..b4eab372789
--- /dev/null
+++ b/pkgs/desktops/kde-5/applications-16.04/print-manager.nix
@@ -0,0 +1,47 @@
+{ 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 = [
+    cups
+    kconfig
+    kconfigwidgets
+    kdbusaddons
+    kiconthemes
+    kcmutils
+    knotifications
+    kwidgetsaddons
+    kitemviews
+  ];
+  propagatedBuildInputs = [
+    ki18n
+    kio
+    kwindowsystem
+    plasma-framework
+    qtdeclarative
+  ];
+  meta = {
+    license = [ lib.licenses.gpl2 ];
+    maintainers = [ lib.maintainers.ttuegel ];
+  };
+}