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

17 lines
388 B
Nix
Raw Normal View History

2016-04-21 16:32:21 +01:00
{ kdeFramework, lib
, extra-cmake-modules
, kcodecs, kconfig, kcoreaddons, kwindowsystem
, libdbusmenu
2016-04-21 16:32:21 +01:00
, phonon
, qtx11extras
}:
kdeFramework {
name = "knotifications";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-04-21 16:32:21 +01:00
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [
kcodecs kconfig kcoreaddons kwindowsystem libdbusmenu phonon qtx11extras
2016-04-21 16:32:21 +01:00
];
}