mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
32 lines
570 B
Nix
32 lines
570 B
Nix
{
|
|
lib,
|
|
mkKdeDerivation,
|
|
fetchurl,
|
|
qtdeclarative,
|
|
qt5compat,
|
|
}:
|
|
mkKdeDerivation rec {
|
|
pname = "kirigami-addons";
|
|
version = "1.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/kirigami-addons/kirigami-addons-${version}.tar.xz";
|
|
hash = "sha256-+d/RkQIrYz6jNI+Ecw1xWKFZ3+SWaNugqem9Z4rETlQ=";
|
|
};
|
|
|
|
extraBuildInputs = [ qtdeclarative ];
|
|
extraPropagatedBuildInputs = [ qt5compat ];
|
|
|
|
meta.license = with lib.licenses; [
|
|
bsd2
|
|
cc-by-sa-40
|
|
cc0
|
|
gpl2Plus
|
|
lgpl2Only
|
|
lgpl2Plus
|
|
lgpl21Only
|
|
lgpl21Plus
|
|
lgpl3Only
|
|
];
|
|
}
|