Skip to content

Commit fc64ad3

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

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 "05696ce205b78a9f936af418cb7ab95f7931ad8135115588b4f050f8eed57271"
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)