Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
31 lines
482 B
Nix
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
|
|
];
|
|
}
|