summary refs log tree commit diff
diff options
context:
space:
mode:
authorhqurve <hqurve@outlook.com>2023-04-26 17:40:27 -0400
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-05-08 14:40:19 +0200
commit9e49dc15f5dddd4a6353e529ffb76f6827676731 (patch)
tree42a280f0a694ee0a2fab049995483074cf0f118d
parent3207005942b872f6e7fc34caa9c20c98b511feb1 (diff)
downloadnixpkgs-9e49dc15f5dddd4a6353e529ffb76f6827676731.tar
nixpkgs-9e49dc15f5dddd4a6353e529ffb76f6827676731.tar.gz
nixpkgs-9e49dc15f5dddd4a6353e529ffb76f6827676731.tar.bz2
nixpkgs-9e49dc15f5dddd4a6353e529ffb76f6827676731.tar.lz
nixpkgs-9e49dc15f5dddd4a6353e529ffb76f6827676731.tar.xz
nixpkgs-9e49dc15f5dddd4a6353e529ffb76f6827676731.tar.zst
nixpkgs-9e49dc15f5dddd4a6353e529ffb76f6827676731.zip
analitza: init at 23.04.0
-rw-r--r--pkgs/applications/kde/analitza.nix34
-rw-r--r--pkgs/applications/kde/default.nix1
2 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/applications/kde/analitza.nix b/pkgs/applications/kde/analitza.nix
new file mode 100644
index 00000000000..2ddd8cfbb82
--- /dev/null
+++ b/pkgs/applications/kde/analitza.nix
@@ -0,0 +1,34 @@
+{ lib
+, mkDerivation
+, cmake
+, extra-cmake-modules
+, qtbase
+, qtsvg
+, eigen
+, kdoctools
+, qttools
+}:
+
+mkDerivation {
+  pname = "analitza";
+
+  nativeBuildInputs = [
+    cmake
+    eigen
+    extra-cmake-modules
+    kdoctools
+    qttools
+  ];
+
+  buildInputs = [
+    qtbase
+    qtsvg
+  ];
+
+  meta = with lib; {
+    description = "Front end to powerful mathematics and statistics packages";
+    homepage = "https://cantor.kde.org/";
+    license = with licenses; [ gpl2Only lgpl2Only fdl12Only ];
+    maintainers = with maintainers; [ hqurve ];
+  };
+}
diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix
index 3e3f31c3a70..87356823572 100644
--- a/pkgs/applications/kde/default.nix
+++ b/pkgs/applications/kde/default.nix
@@ -72,6 +72,7 @@ let
       akonadi-search = callPackage ./akonadi-search.nix {};
       akonadiconsole = callPackage ./akonadiconsole.nix {};
       akregator = callPackage ./akregator.nix {};
+      analitza = callPackage ./analitza.nix {};
       ark = callPackage ./ark {};
       baloo-widgets = callPackage ./baloo-widgets.nix {};
       bomber = callPackage ./bomber.nix {};