Skip to content

Commit 91c6091

Browse files
committed
code-server: Depends on libsecret and pkg-config for Linux
libsecret is not spelled out explicitly in the dependencies, but it's mentioned as a step here: coder/code-server#735 (comment) pkg-config was found as a required dep by CI
1 parent 89db8cc commit 91c6091

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Formula/code-server.rb

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ 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+
end
22+
1823
def install
1924
system "yarn", "--production"
2025
libexec.install Dir["*"]

0 commit comments

Comments
 (0)