12 lines
185 B
Nix
12 lines
185 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qtdeclarative,
|
||
|
pkg-config,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "kpublictransport";
|
||
|
|
||
|
extraNativeBuildInputs = [pkg-config];
|
||
|
extraBuildInputs = [qtdeclarative];
|
||
|
}
|