summary refs log tree commit diff
path: root/pkgs/applications/kde/kqtquickcharts.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-05-12 12:55:26 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-08-21 06:51:18 -0500
commit3ca93ebb4ba5f69e6baaa24a804705388590a356 (patch)
tree7ffdbfefcc8929f7c9ff5c295addb7972ae2453a /pkgs/applications/kde/kqtquickcharts.nix
parentb7493e13618e739a386f7a2d2f11db3ed8fb0118 (diff)
downloadnixlib-3ca93ebb4ba5f69e6baaa24a804705388590a356.tar
nixlib-3ca93ebb4ba5f69e6baaa24a804705388590a356.tar.gz
nixlib-3ca93ebb4ba5f69e6baaa24a804705388590a356.tar.bz2
nixlib-3ca93ebb4ba5f69e6baaa24a804705388590a356.tar.lz
nixlib-3ca93ebb4ba5f69e6baaa24a804705388590a356.tar.xz
nixlib-3ca93ebb4ba5f69e6baaa24a804705388590a356.tar.zst
nixlib-3ca93ebb4ba5f69e6baaa24a804705388590a356.zip
kqtquickcharts: init at 17.04.0
Diffstat (limited to 'pkgs/applications/kde/kqtquickcharts.nix')
-rw-r--r--pkgs/applications/kde/kqtquickcharts.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kqtquickcharts.nix b/pkgs/applications/kde/kqtquickcharts.nix
new file mode 100644
index 000000000000..2b3dc5313d9a
--- /dev/null
+++ b/pkgs/applications/kde/kqtquickcharts.nix
@@ -0,0 +1,15 @@
+{
+  mkDerivation, lib,
+  extra-cmake-modules,
+  qtbase, qtdeclarative,
+}:
+
+mkDerivation {
+  name = "kqtquickcharts";
+  meta = {
+    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
+    maintainers = [ lib.maintainers.ttuegel ];
+  };
+  nativeBuildInputs = [ extra-cmake-modules ];
+  propagatedBuildInputs = [ qtbase qtdeclarative ];
+}