mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
12 lines
153 B
Nix
12 lines
153 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qttools,
|
||
|
avahi,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "kdnssd";
|
||
|
|
||
|
extraNativeBuildInputs = [qttools];
|
||
|
extraBuildInputs = [avahi];
|
||
|
}
|