nixpkgs/pkgs/applications/kde/analitza.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
545 B
Nix
Raw Normal View History

2023-04-26 21:40:27 +00:00
{ 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 ];
};
}