mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
22 lines
365 B
Nix
22 lines
365 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, kcodecs
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kwindowsystem
|
|
, phonon
|
|
, qtx11extras
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "knotifications";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kcodecs kconfig kcoreaddons kwindowsystem
|
|
phonon qtx11extras
|
|
];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|