2024-02-05 15:43:41 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
mkKdeDerivation,
|
|
|
|
fetchurl,
|
|
|
|
qtdeclarative,
|
|
|
|
qt5compat,
|
|
|
|
}:
|
|
|
|
mkKdeDerivation rec {
|
|
|
|
pname = "kirigami-addons";
|
2024-05-17 10:26:58 +00:00
|
|
|
version = "1.2.1";
|
2024-02-05 15:43:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kde/stable/kirigami-addons/kirigami-addons-${version}.tar.xz";
|
2024-05-17 10:26:58 +00:00
|
|
|
hash = "sha256-ZXQm+exVz+xafwSEjtK03yrIv8szwlYmrSOSGdRE7pg=";
|
2024-02-05 15:43:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extraBuildInputs = [qtdeclarative];
|
|
|
|
extraPropagatedBuildInputs = [qt5compat];
|
|
|
|
|
|
|
|
meta.license = with lib.licenses; [
|
|
|
|
bsd2
|
|
|
|
cc-by-sa-40
|
|
|
|
cc0
|
|
|
|
gpl2Plus
|
|
|
|
lgpl2Only
|
|
|
|
lgpl2Plus
|
|
|
|
lgpl21Only
|
|
|
|
lgpl21Plus
|
|
|
|
lgpl3Only
|
|
|
|
];
|
|
|
|
}
|