oxygen-sounds: init at 5.25.3

These are the notification sounds used all over the place by Plasma
components.
This commit is contained in:
Alois Wohlschlager 2022-07-28 18:09:49 +02:00
parent 6af31b8b76
commit df2318949e
No known key found for this signature in database
GPG Key ID: E0F59EA5E5216914
3 changed files with 12 additions and 0 deletions

View File

@ -340,6 +340,8 @@ in
plasma-workspace
plasma-workspace-wallpapers
oxygen-sounds
breeze-icons
pkgs.hicolor-icon-theme

View File

@ -131,6 +131,7 @@ let
libksysguard = callPackage ./libksysguard {};
milou = callPackage ./milou.nix {};
oxygen = callPackage ./oxygen.nix {};
oxygen-sounds = callPackage ./oxygen-sounds.nix {};
plasma-browser-integration = callPackage ./plasma-browser-integration.nix {};
plasma-desktop = callPackage ./plasma-desktop {};
plasma-disks = callPackage ./plasma-disks.nix {};

View File

@ -0,0 +1,9 @@
{
mkDerivation,
extra-cmake-modules,
}:
mkDerivation {
pname = "oxygen-sounds";
nativeBuildInputs = [ extra-cmake-modules ];
}