mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 20:34:06 +00:00
32 lines
566 B
Nix
32 lines
566 B
Nix
{
|
|
lib,
|
|
mkKdeDerivation,
|
|
fetchurl,
|
|
qtdeclarative,
|
|
qt5compat,
|
|
}:
|
|
mkKdeDerivation rec {
|
|
pname = "kirigami-addons";
|
|
version = "1.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/kirigami-addons/kirigami-addons-${version}.tar.xz";
|
|
hash = "sha256-j/NkWKqQ/x2YBik1e23fXoira8kXsBGn+fpdXhKs9Ro=";
|
|
};
|
|
|
|
extraBuildInputs = [qtdeclarative];
|
|
extraPropagatedBuildInputs = [qt5compat];
|
|
|
|
meta.license = with lib.licenses; [
|
|
bsd2
|
|
cc-by-sa-40
|
|
cc0
|
|
gpl2Plus
|
|
lgpl2Only
|
|
lgpl2Plus
|
|
lgpl21Only
|
|
lgpl21Plus
|
|
lgpl3Only
|
|
];
|
|
}
|