about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.19/kcoreaddons.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-03-08 08:31:34 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-03-08 09:42:41 +0100
commitf306e67e15bdbe9a8358c9f81319fc4fcbadc2eb (patch)
tree713f81c97b15d54e3daf42fedb9349d72b63b07e /pkgs/desktops/kde-5/frameworks-5.19/kcoreaddons.nix
parent4e2fe6e5794a78173f415dfb3d2afa3d499065db (diff)
downloadnixlib-f306e67e15bdbe9a8358c9f81319fc4fcbadc2eb.tar
nixlib-f306e67e15bdbe9a8358c9f81319fc4fcbadc2eb.tar.gz
nixlib-f306e67e15bdbe9a8358c9f81319fc4fcbadc2eb.tar.bz2
nixlib-f306e67e15bdbe9a8358c9f81319fc4fcbadc2eb.tar.lz
nixlib-f306e67e15bdbe9a8358c9f81319fc4fcbadc2eb.tar.xz
nixlib-f306e67e15bdbe9a8358c9f81319fc4fcbadc2eb.tar.zst
nixlib-f306e67e15bdbe9a8358c9f81319fc4fcbadc2eb.zip
kde5: move files around to simplify merge
It is analogous to 98d8e1a160d3.
Diffstat (limited to 'pkgs/desktops/kde-5/frameworks-5.19/kcoreaddons.nix')
-rw-r--r--pkgs/desktops/kde-5/frameworks-5.19/kcoreaddons.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks-5.19/kcoreaddons.nix
new file mode 100644
index 000000000000..f3a1db7bd484
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks-5.19/kcoreaddons.nix
@@ -0,0 +1,16 @@
+{ kdeFramework, lib, makeQtWrapper
+, extra-cmake-modules
+, shared_mime_info
+}:
+
+kdeFramework {
+  name = "kcoreaddons";
+  nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
+  buildInputs = [ shared_mime_info ];
+  postInstall = ''
+    wrapQtProgram "$out/bin/desktoptojson"
+  '';
+  meta = {
+    maintainers = [ lib.maintainers.ttuegel ];
+  };
+}