blob: 6b64d4082d9da591ebc51f26f4d74a22a552dfdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
lib,
mkKdeDerivation,
fetchurl,
}:
mkKdeDerivation rec {
pname = "kirigami-app-components";
version = "1.0.2";
src = fetchurl {
url = "mirror://kde/stable/kirigami-app-components/kirigami-app-components-${version}.tar.xz";
hash = "sha256-a/2eCjpLfRdQXww8DDlWKBZZc7b0zx5Keh8zQoc7RNA=";
};
meta.license = with lib.licenses; [
bsd3
cc0
fsfap
lgpl2Plus
lgpl21Plus
];
}
|