12 lines
174 B
Nix
12 lines
174 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
pkg-config,
|
||
|
qtsensors,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "plasma-mobile";
|
||
|
|
||
|
extraNativeBuildInputs = [pkg-config];
|
||
|
extraBuildInputs = [qtsensors];
|
||
|
}
|