nixpkgs/pkgs/kde/plasma/libplasma/default.nix

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

18 lines
222 B
Nix
Raw Normal View History

{
mkKdeDerivation,
qtsvg,
qtwayland,
wayland,
pkg-config,
}:
mkKdeDerivation {
pname = "libplasma";
2024-09-20 05:54:48 +00:00
extraNativeBuildInputs = [ pkg-config ];
extraBuildInputs = [
qtsvg
qtwayland
wayland
];
}