about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2019-02-10 01:33:04 +0000
committerOrivej Desh (NixOS) <40807862+orivej-nixos@users.noreply.github.com>2019-02-21 16:19:41 +0000
commitdd269b462897883f4e09bb23f29969ef487f7e56 (patch)
treeb13dc67abd681e05aabad53091e6a0835501f6f6 /pkgs
parent8ef1e4186f38ba66037dd4406a9b549c1c479a39 (diff)
downloadnixlib-dd269b462897883f4e09bb23f29969ef487f7e56.tar
nixlib-dd269b462897883f4e09bb23f29969ef487f7e56.tar.gz
nixlib-dd269b462897883f4e09bb23f29969ef487f7e56.tar.bz2
nixlib-dd269b462897883f4e09bb23f29969ef487f7e56.tar.lz
nixlib-dd269b462897883f4e09bb23f29969ef487f7e56.tar.xz
nixlib-dd269b462897883f4e09bb23f29969ef487f7e56.tar.zst
nixlib-dd269b462897883f4e09bb23f29969ef487f7e56.zip
kmplot: init at 18.12.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/kde/default.nix1
-rw-r--r--pkgs/applications/kde/kmplot.nix15
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 17 insertions, 1 deletions
diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix
index 0822e65c7c0c..b9b318e75c3e 100644
--- a/pkgs/applications/kde/default.nix
+++ b/pkgs/applications/kde/default.nix
@@ -124,6 +124,7 @@ let
       kmbox = callPackage ./kmbox.nix {};
       kmime = callPackage ./kmime.nix {};
       kmix = callPackage ./kmix.nix {};
+      kmplot = callPackage ./kmplot.nix {};
       kolourpaint = callPackage ./kolourpaint.nix {};
       kompare = callPackage ./kompare.nix {};
       konsole = callPackage ./konsole.nix {};
diff --git a/pkgs/applications/kde/kmplot.nix b/pkgs/applications/kde/kmplot.nix
new file mode 100644
index 000000000000..c0c00f213400
--- /dev/null
+++ b/pkgs/applications/kde/kmplot.nix
@@ -0,0 +1,15 @@
+{ mkDerivation, lib, extra-cmake-modules, kdoctools
+, kcrash, kguiaddons, ki18n, kparts, kwidgetsaddons, kdbusaddons
+}:
+
+mkDerivation {
+  name = "kmplot";
+  meta = {
+    license = with lib.licenses; [ gpl2Plus fdl12 ];
+    maintainers = [ lib.maintainers.orivej ];
+  };
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  buildInputs = [
+    kcrash kguiaddons ki18n kparts kwidgetsaddons kdbusaddons
+  ];
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 4a0ba1c984ea..514bf8a170e6 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -17853,7 +17853,7 @@ in
   inherit (kdeApplications)
     akonadi akregator ark dolphin dragon ffmpegthumbs filelight gwenview k3b
     kaddressbook kate kcachegrind kcalc kcharselect kcolorchooser kcontacts kdenlive kdf kdialog
-    keditbookmarks kget kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole
+    keditbookmarks kget kgpg khelpcenter kig kleopatra kmail kmix kmplot kolourpaint kompare konsole
     kpkpass kitinerary kontact korganizer krdc krfb ksystemlog ktouch kwalletmanager marble minuet okular spectacle;
 
   okteta = libsForQt5.callPackage ../applications/editors/okteta { };