Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
403 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
mkKdeDerivation,
fetchurl,
}:
mkKdeDerivation rec {
pname = "plasma-wayland-protocols";
version = "1.19.0";
src = fetchurl {
url = "mirror://kde/stable/plasma-wayland-protocols/plasma-wayland-protocols-${version}.tar.xz";
hash = "sha256-RWef56Y8QU8sgXk6YlKPrmzO5YS2llcZ1/n8bdSLqEY=";
};
meta.license = with lib.licenses; [
bsd3
cc0
lgpl21Plus
mit
];
}