09af15654f
The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
13 lines
227 B
Nix
13 lines
227 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, avahi
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kdnssd";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ avahi ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|