depot/pkgs/kde/misc/ktextaddons/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

31 lines
482 B
Nix

{
lib,
mkKdeDerivation,
fetchurl,
qtspeech,
qttools,
kxmlgui,
}:
mkKdeDerivation rec {
pname = "ktextaddons";
version = "1.5.4";
src = fetchurl {
url = "mirror://kde/stable/ktextaddons/ktextaddons-${version}.tar.xz";
hash = "sha256-ZLgGAuhLJekWRiCvP2NB+oZbhegmq49eAgYa4koneyA=";
};
extraBuildInputs = [
qtspeech
qttools
kxmlgui
];
meta.license = with lib.licenses; [
bsd3
cc0
gpl2Plus
lgpl2Plus
lgpl21Plus
];
}