7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
16 lines
215 B
Nix
16 lines
215 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtlocation,
|
|
qtwebview,
|
|
kunifiedpush,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "neochat";
|
|
|
|
extraBuildInputs = [
|
|
qtlocation
|
|
qtwebview
|
|
kunifiedpush
|
|
];
|
|
meta.mainProgram = "neochat";
|
|
}
|