mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
18 lines
240 B
Nix
18 lines
240 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtwebsockets,
|
|
kdeclarative,
|
|
kpackage,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kunifiedpush";
|
|
|
|
extraBuildInputs = [
|
|
qtwebsockets
|
|
kdeclarative
|
|
kpackage
|
|
];
|
|
|
|
meta.mainProgram = "kunifiedpush-distributor";
|
|
}
|