summaryrefslogtreecommitdiffhomepage
path: root/nix
diff options
context:
space:
mode:
authorCaleb Norton <[email protected]>2026-02-01 14:24:09 -0600
committerGitHub <[email protected]>2026-02-01 14:24:09 -0600
commit01cec84789235c4cc9db65953bfa358f43b13888 (patch)
tree8ab34a09f56a4261d9d7d430ae96f3db3dcf09bd /nix
parente62a15d421e6bfafac6151f152e018a75015a3f0 (diff)
downloadopencode-01cec84789235c4cc9db65953bfa358f43b13888.tar.gz
opencode-01cec84789235c4cc9db65953bfa358f43b13888.zip
fix(desktop): nix - add missing dep (#11656)
Co-authored-by: Aiden Cline <[email protected]>
Diffstat (limited to 'nix')
-rw-r--r--nix/desktop.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nix/desktop.nix b/nix/desktop.nix
index 9625f75c2..efdc2bd72 100644
--- a/nix/desktop.nix
+++ b/nix/desktop.nix
@@ -45,8 +45,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
rustc
jq
makeWrapper
- ]
- ++ lib.optionals stdenv.hostPlatform.isLinux [ wrapGAppsHook4 ];
+ ] ++ lib.optionals stdenv.hostPlatform.isLinux [ wrapGAppsHook4 ];
buildInputs = lib.optionals stdenv.isLinux [
dbus
@@ -61,6 +60,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
+ gst_all_1.gst-plugins-bad
];
strictDeps = true;
@@ -97,4 +97,4 @@ rustPlatform.buildRustPackage (finalAttrs: {
mainProgram = "opencode-desktop";
inherit (opencode.meta) platforms;
};
-}) \ No newline at end of file
+})