summary refs log tree commit diff
path: root/pkgs/applications/kde/kmplot.nix
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/applications/kde/kmplot.nix
parent8ef1e4186f38ba66037dd4406a9b549c1c479a39 (diff)
downloadnixpkgs-dd269b462897883f4e09bb23f29969ef487f7e56.tar
nixpkgs-dd269b462897883f4e09bb23f29969ef487f7e56.tar.gz
nixpkgs-dd269b462897883f4e09bb23f29969ef487f7e56.tar.bz2
nixpkgs-dd269b462897883f4e09bb23f29969ef487f7e56.tar.lz
nixpkgs-dd269b462897883f4e09bb23f29969ef487f7e56.tar.xz
nixpkgs-dd269b462897883f4e09bb23f29969ef487f7e56.tar.zst
nixpkgs-dd269b462897883f4e09bb23f29969ef487f7e56.zip
kmplot: init at 18.12.1
Diffstat (limited to 'pkgs/applications/kde/kmplot.nix')
-rw-r--r--pkgs/applications/kde/kmplot.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kmplot.nix b/pkgs/applications/kde/kmplot.nix
new file mode 100644
index 00000000000..c0c00f21340
--- /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
+  ];
+}