mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
ce77225e21
This is the thing you want to look at.
14 lines
204 B
Nix
14 lines
204 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
qtwayland,
|
|
wayland,
|
|
pkg-config,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "libplasma";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtsvg qtwayland wayland];
|
|
}
|