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