16 lines
212 B
Nix
16 lines
212 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
qtlocation,
|
|
plasma-nm,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "plasma-setup";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
qtlocation
|
|
plasma-nm
|
|
];
|
|
}
|