nixpkgs/pkgs/kde/misc/ktextaddons/default.nix

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

32 lines
482 B
Nix
Raw Normal View History

{
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=";
};
2024-09-20 05:54:48 +00:00
extraBuildInputs = [
qtspeech
qttools
kxmlgui
];
meta.license = with lib.licenses; [
bsd3
cc0
gpl2Plus
lgpl2Plus
lgpl21Plus
];
}