1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-04-19 19:34:24 +02:00

build(nix): add libpulseaudio to flake

This commit is contained in:
Jake Stanger 2024-02-18 17:32:51 +00:00
parent e38f17ce55
commit f0e34e6504
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61
2 changed files with 3 additions and 1 deletions

View file

@ -127,6 +127,7 @@
hicolor-icon-theme hicolor-icon-theme
gsettings-desktop-schemas gsettings-desktop-schemas
libxkbcommon libxkbcommon
libpulseaudio
]; ];
RUST_SRC_PATH = "${rust}/lib/rustlib/src/rust/library"; RUST_SRC_PATH = "${rust}/lib/rustlib/src/rust/library";

View file

@ -12,6 +12,7 @@
gtk-layer-shell, gtk-layer-shell,
gnome, gnome,
libxkbcommon, libxkbcommon,
libpulseaudio,
openssl, openssl,
pkg-config, pkg-config,
hicolor-icon-theme, hicolor-icon-theme,
@ -30,7 +31,7 @@
path = lib.cleanSource ../.; path = lib.cleanSource ../.;
}; };
nativeBuildInputs = [pkg-config wrapGAppsHook gobject-introspection]; nativeBuildInputs = [pkg-config wrapGAppsHook gobject-introspection];
buildInputs = [gtk3 gdk-pixbuf glib gtk-layer-shell glib-networking shared-mime-info gnome.adwaita-icon-theme hicolor-icon-theme gsettings-desktop-schemas libxkbcommon openssl]; buildInputs = [gtk3 gdk-pixbuf glib gtk-layer-shell glib-networking shared-mime-info gnome.adwaita-icon-theme hicolor-icon-theme gsettings-desktop-schemas libxkbcommon libpulseaudio openssl];
propagatedBuildInputs = [ propagatedBuildInputs = [
gtk3 gtk3
]; ];