Skip to content

Commit e8a43f1

Browse files
committed
code-server: Fix dependencies for Linuxbrew
libsecret is not spelled out explicitly in the dependencies, but it's mentioned as a step here: coder/code-server#735 (comment) X11 dependencies were also found by CI
1 parent 8f344f7 commit e8a43f1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Formula/code-server.rb

+7
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ class CodeServer < Formula
1515
depends_on "yarn" => :build
1616
depends_on "node"
1717

18+
unless OS.mac?
19+
depends_on "pkg-config" => :build
20+
depends_on "libsecret"
21+
depends_on "linuxbrew/xorg/libxkbfile"
22+
depends_on "linuxbrew/xorg/libx11"
23+
end
24+
1825
def install
1926
system "yarn", "--production", "--frozen-lockfile"
2027
libexec.install Dir["*"]

0 commit comments

Comments
 (0)