biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / kde / analitza.nix
blob2ddd8cfbb821ff351c65b0237335f6bb087bb9e6
1 { lib
2 , mkDerivation
3 , cmake
4 , extra-cmake-modules
5 , qtbase
6 , qtsvg
7 , eigen
8 , kdoctools
9 , qttools
12 mkDerivation {
13   pname = "analitza";
15   nativeBuildInputs = [
16     cmake
17     eigen
18     extra-cmake-modules
19     kdoctools
20     qttools
21   ];
23   buildInputs = [
24     qtbase
25     qtsvg
26   ];
28   meta = with lib; {
29     description = "Front end to powerful mathematics and statistics packages";
30     homepage = "https://cantor.kde.org/";
31     license = with licenses; [ gpl2Only lgpl2Only fdl12Only ];
32     maintainers = with maintainers; [ hqurve ];
33   };