13 lines
170 B
Nix
13 lines
170 B
Nix
|
|
{
|
||
|
|
mkKdeDerivation,
|
||
|
|
pkg-config,
|
||
|
|
gpsd,
|
||
|
|
}:
|
||
|
|
mkKdeDerivation {
|
||
|
|
pname = "plasma5support";
|
||
|
|
|
||
|
|
extraNativeBuildInputs = [ pkg-config ];
|
||
|
|
|
||
|
|
extraBuildInputs = [ gpsd ];
|
||
|
|
}
|