nixpkgs/pkgs/development/libraries/kde-frameworks/kdnssd.nix

13 lines
284 B
Nix
Raw Normal View History

2016-04-21 15:32:21 +00:00
{ kdeFramework, lib
, extra-cmake-modules, qttools
, avahi, qtbase
2016-04-21 15:32:21 +00:00
}:
kdeFramework {
name = "kdnssd";
2016-04-28 15:51:54 +00:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules qttools ];
2016-04-28 15:51:54 +00:00
propagatedBuildInputs = [ avahi ];
buildInputs = [ qtbase ];
2016-04-21 15:32:21 +00:00
}