summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-16.04/filelight.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/filelight.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/filelight.nix')
-rw-r--r--pkgs/desktops/kde-5/applications-16.04/filelight.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/desktops/kde-5/applications-16.04/filelight.nix b/pkgs/desktops/kde-5/applications-16.04/filelight.nix
new file mode 100644
index 00000000000..df5e097a540
--- /dev/null
+++ b/pkgs/desktops/kde-5/applications-16.04/filelight.nix
@@ -0,0 +1,35 @@
+{ kdeApp
+, lib
+, extra-cmake-modules
+, kdoctools
+, makeQtWrapper
+, qtscript
+, kio
+, solid
+, kxmlgui
+, kparts
+}:
+
+kdeApp {
+  name = "filelight";
+  nativeBuildInputs = [
+    extra-cmake-modules
+    kdoctools
+    makeQtWrapper
+  ];
+  buildInputs = [
+    kio
+    kparts
+    qtscript
+    solid
+    kxmlgui
+  ];
+
+  postInstall = ''
+    wrapQtProgram "$out/bin/filelight"
+  '';
+  meta = {
+    license = with lib.licenses; [ gpl2 ];
+    maintainers = with lib.maintainers; [ fridh vcunat ];
+  };
+}