summary refs log tree commit diff
path: root/pkgs/applications/kde/keditbookmarks.nix
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-10-24 22:49:35 +0800
committerPeter Hoeg <peter@hoeg.com>2017-10-24 22:50:55 +0800
commit8a28d840e995a1914b3224d47020bb5d6a396aca (patch)
tree41ff97d3c0c6d7fc56f65b965cb5332e02d89801 /pkgs/applications/kde/keditbookmarks.nix
parent0f0fcf84ce962cbcc7dfee255f91cba926159705 (diff)
downloadnixpkgs-8a28d840e995a1914b3224d47020bb5d6a396aca.tar
nixpkgs-8a28d840e995a1914b3224d47020bb5d6a396aca.tar.gz
nixpkgs-8a28d840e995a1914b3224d47020bb5d6a396aca.tar.bz2
nixpkgs-8a28d840e995a1914b3224d47020bb5d6a396aca.tar.lz
nixpkgs-8a28d840e995a1914b3224d47020bb5d6a396aca.tar.xz
nixpkgs-8a28d840e995a1914b3224d47020bb5d6a396aca.tar.zst
nixpkgs-8a28d840e995a1914b3224d47020bb5d6a396aca.zip
keditbookmarks: init at 17.08.1
Diffstat (limited to 'pkgs/applications/kde/keditbookmarks.nix')
-rw-r--r--pkgs/applications/kde/keditbookmarks.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/applications/kde/keditbookmarks.nix b/pkgs/applications/kde/keditbookmarks.nix
new file mode 100644
index 00000000000..57741c03ad5
--- /dev/null
+++ b/pkgs/applications/kde/keditbookmarks.nix
@@ -0,0 +1,17 @@
+{
+  mkDerivation, lib,
+  extra-cmake-modules, kdoctools,
+  kio, kparts, kwindowsystem
+}:
+
+mkDerivation {
+  name = "keditbookmarks";
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  buildInputs = [ kio kparts kwindowsystem ];
+  meta = with lib; {
+    homepage = http://www.kde.org;
+    license = with licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
+    maintainers = with maintainers; [ peterhoeg ];
+    platforms = platforms.linux;
+  };
+}