about summary refs log tree commit diff
path: root/pkgs/applications/kde-apps-15.12/dolphin.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-11-21 14:08:42 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-11-23 06:39:07 -0600
commitad04eda83a64dec4e34127e2fdc7146bc95b959d (patch)
tree172290e1e07d36600a8a2b58a2f0e4c7a1440010 /pkgs/applications/kde-apps-15.12/dolphin.nix
parente45f0e9715dd881350e687be1c0a95427d861acb (diff)
downloadnixlib-ad04eda83a64dec4e34127e2fdc7146bc95b959d.tar
nixlib-ad04eda83a64dec4e34127e2fdc7146bc95b959d.tar.gz
nixlib-ad04eda83a64dec4e34127e2fdc7146bc95b959d.tar.bz2
nixlib-ad04eda83a64dec4e34127e2fdc7146bc95b959d.tar.lz
nixlib-ad04eda83a64dec4e34127e2fdc7146bc95b959d.tar.xz
nixlib-ad04eda83a64dec4e34127e2fdc7146bc95b959d.tar.zst
nixlib-ad04eda83a64dec4e34127e2fdc7146bc95b959d.zip
kdeApps_15_12: init at 15.11.80
Diffstat (limited to 'pkgs/applications/kde-apps-15.12/dolphin.nix')
-rw-r--r--pkgs/applications/kde-apps-15.12/dolphin.nix70
1 files changed, 70 insertions, 0 deletions
diff --git a/pkgs/applications/kde-apps-15.12/dolphin.nix b/pkgs/applications/kde-apps-15.12/dolphin.nix
new file mode 100644
index 000000000000..3218146f510e
--- /dev/null
+++ b/pkgs/applications/kde-apps-15.12/dolphin.nix
@@ -0,0 +1,70 @@
+{ kdeApp
+, lib
+, extra-cmake-modules
+, kdoctools
+, makeQtWrapper
+, kinit
+, kcmutils
+, kcoreaddons
+, knewstuff
+, ki18n
+, kdbusaddons
+, kbookmarks
+, kconfig
+, kio
+, kparts
+, solid
+, kiconthemes
+, kcompletion
+, ktexteditor
+, kwindowsystem
+, knotifications
+, kactivities
+, phonon
+, baloo
+, baloo-widgets
+, kfilemetadata
+, kdelibs4support
+}:
+
+kdeApp {
+  name = "dolphin";
+  nativeBuildInputs = [
+    extra-cmake-modules
+    kdoctools
+    makeQtWrapper
+  ];
+  buildInputs = [
+    kinit
+    kcmutils
+    kcoreaddons
+    knewstuff
+    kdbusaddons
+    kbookmarks
+    kconfig
+    kparts
+    solid
+    kiconthemes
+    kcompletion
+    knotifications
+    phonon
+    baloo-widgets
+  ];
+  propagatedBuildInputs = [
+    baloo
+    kactivities
+    kdelibs4support
+    kfilemetadata
+    ki18n
+    kio
+    ktexteditor
+    kwindowsystem
+  ];
+  postInstall = ''
+    wrapQtProgram "$out/bin/dolphin"
+  '';
+  meta = {
+    license = with lib.licenses; [ gpl2 fdl12 ];
+    maintainers = [ lib.maintainers.ttuegel ];
+  };
+}