Skip to content

Commit 5c72b5c

Browse files
committed
depsguard 0.1.0 (new formula)
1 parent 3407417 commit 5c72b5c

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Formula/d/depsguard.rb

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
class Depsguard < Formula
2+
desc "Harden package manager configs against supply chain attacks, built by Arnica"
3+
homepage "https://depsguard.com"
4+
url "https://github.com/arnica/depsguard/archive/refs/tags/v0.1.0.tar.gz"
5+
sha256 "0019dfc4b32d63c1392aa264aed2253c1e0c2fb09216f8e2cc269bbfb8bb49b5"
6+
license "MIT"
7+
head "https://github.com/arnica/depsguard.git", branch: "main"
8+
9+
depends_on "rust" => :build
10+
11+
def install
12+
system "cargo", "install", *std_cargo_args
13+
end
14+
15+
test do
16+
assert_match "depsguard", shell_output("#{bin}/depsguard --help")
17+
end
18+
end

0 commit comments

Comments
 (0)