-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (45 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class NctlAT43Rc < Formula
desc "Nirmata CLI to scan and remediate Kubernetes manifests, Terraform, and more!"
homepage "https://docs.nirmata.io/nctl/"
version "4.3.1-rc.5"
on_macos do
on_intel do
url "https://dl.nirmata.io/nctl/nctl_4.3.1-rc.5/nctl_4.3.1-rc.5_macos_amd64.zip"
sha256 "a8ff94ed52bd64d7d8d7dff8d01b8e3d62fbafb9e61e59b7b78bb1059db3ae12"
def install
bin.install "nctl"
end
end
on_arm do
url "https://dl.nirmata.io/nctl/nctl_4.3.1-rc.5/nctl_4.3.1-rc.5_macos_arm64.zip"
sha256 "a121204de5d72a5ecd13426e0fdc2561752a352cc390f812ad57dbaf5aea647a"
def install
bin.install "nctl"
end
end
end
on_linux do
on_intel do
if Hardware::CPU.is_64_bit?
url "https://dl.nirmata.io/nctl/nctl_4.3.1-rc.5/nctl_4.3.1-rc.5_linux_amd64.zip"
sha256 "30844f647db047b12eb01ce9c56002b70d257eddaa75d44877236df08d04d78e"
def install
bin.install "nctl"
end
end
end
on_arm do
if Hardware::CPU.is_64_bit?
url "https://dl.nirmata.io/nctl/nctl_4.3.1-rc.5/nctl_4.3.1-rc.5_linux_arm64.zip"
sha256 "679c85b883c95ebb31af7bbab31f42e1b25886a077553cf901c40e5e9c3e2e47"
def install
bin.install "nctl"
end
end
end
end
conflicts_with "nctl"
end