summary refs log blame commit diff
path: root/pkgs/applications/kde/analitza.nix
blob: 2ddd8cfbb821ff351c65b0237335f6bb087bb9e6 (plain) (tree)

































                                                                              
{ 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 ];
  };
}