about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2024-09-02 23:54:08 +0800
committerGitHub <noreply@github.com>2024-09-02 23:54:08 +0800
commitc058bd0f5724771d02992fff11df01a79a52ba5c (patch)
tree5a9f48c224315646533cfc9021c27d03bb1bf4a5
parent9e1f17023f576acc8c5e942deb34d33fcab7dc02 (diff)
parentf7947da16c628b0cee43547d2af803ff443b0241 (diff)
pantheon.switchboard-plug-sound: fix cross compilation (#338799)
-rw-r--r--pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix
index 423102152da47..f6bd304bbfc0b 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix
@@ -9,6 +9,7 @@
 , libadwaita
 , libcanberra
 , libgee
+, glib
 , granite7
 , gtk4
 , pulseaudio
@@ -27,6 +28,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [
+    glib
     meson
     ninja
     pkg-config
@@ -43,6 +45,8 @@ stdenv.mkDerivation rec {
     switchboard
   ];
 
+  strictDeps = true;
+
   passthru = {
     updateScript = nix-update-script { };
   };