diff options
author | Bobby Rong | 2024-09-02 23:54:08 +0800 |
---|---|---|
committer | GitHub | 2024-09-02 23:54:08 +0800 |
commit | c058bd0f5724771d02992fff11df01a79a52ba5c (patch) | |
tree | 5a9f48c224315646533cfc9021c27d03bb1bf4a5 /pkgs/desktops | |
parent | 9e1f17023f576acc8c5e942deb34d33fcab7dc02 (diff) | |
parent | f7947da16c628b0cee43547d2af803ff443b0241 (diff) |
pantheon.switchboard-plug-sound: fix cross compilation (#338799)
Diffstat (limited to 'pkgs/desktops')
-rw-r--r-- | pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix | 4 |
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 423102152da4..f6bd304bbfc0 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 { }; }; |