depot/third_party/nixpkgs/pkgs/applications/kde/analitza.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

34 lines
545 B
Nix

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