nixpkgs/pkgs/applications/kde/kalgebra.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

47 lines
698 B
Nix

{ mkDerivation
, lib
, extra-cmake-modules
, kdoctools
, analitza
, ki18n
, kinit
, kirigami2
, kconfigwidgets
, kwidgetsaddons
, kio
, kxmlgui
, qtwebengine
, plasma-framework
}:
mkDerivation {
pname = "kalgebra";
outputs = [ "out" "dev" ];
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
ki18n
analitza
kinit
kirigami2
kconfigwidgets
kwidgetsaddons
kio
kxmlgui
qtwebengine
plasma-framework
];
meta = {
homepage = "https://apps.kde.org/kalgebra/";
description = "2D and 3D Graph Calculator";
license = with lib.licenses; [ gpl2Plus ];
maintainers = with lib.maintainers; [ ninjafb ];
};
}