We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3407417 commit 5c72b5cCopy full SHA for 5c72b5c
1 file changed
Formula/d/depsguard.rb
@@ -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
18
+end
0 commit comments