17 lines
207 B
Nix
17 lines
207 B
Nix
|
|
{
|
||
|
|
mkKdeDerivation,
|
||
|
|
qtlocation,
|
||
|
|
qtspeech,
|
||
|
|
qtwebview,
|
||
|
|
}:
|
||
|
|
mkKdeDerivation {
|
||
|
|
pname = "neochat";
|
||
|
|
|
||
|
|
extraBuildInputs = [
|
||
|
|
qtlocation
|
||
|
|
qtspeech
|
||
|
|
qtwebview
|
||
|
|
];
|
||
|
|
meta.mainProgram = "neochat";
|
||
|
|
}
|