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 fc64ad3Copy full SHA for fc64ad3
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 "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
18
+end
0 commit comments