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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
455 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
mkDerivation,
lib,
stdenv,
extra-cmake-modules,
kcodecs,
kconfig,
kcoreaddons,
kwindowsystem,
phonon,
qttools,
qtx11extras,
qtmacextras,
}:
mkDerivation {
pname = "knotifications";
nativeBuildInputs = [
extra-cmake-modules
qttools
];
buildInputs = [
kcodecs
kconfig
kcoreaddons
kwindowsystem
phonon
qtx11extras
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
qtmacextras
];
}