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

11 lines
303 B
Nix
Raw Normal View History

{ mkDerivation, lib, extra-cmake-modules, kcompletion, kconfig
2016-04-21 08:32:21 -07:00
, ki18n, kio, phonon
}:
mkDerivation {
2016-04-21 08:32:21 -07:00
name = "knotifyconfig";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [ kcompletion kconfig ki18n kio phonon ];
2016-04-21 08:32:21 -07:00
}