zizmor: 1.0.0 -> 1.0.1

Changes:
https://github.com/woodruffw/zizmor/releases/tag/v1.0.1

Additionally remove the openssl dependency as it's not needed because
zizmor uses a Rust TLS stack.

Closes #371940
This commit is contained in:
Dionysis Grigoropoulos
2025-01-08 01:04:29 +02:00
parent 0400660b41
commit c8c0c9252e
+3 -6
View File
@@ -3,25 +3,22 @@
fetchFromGitHub,
rustPlatform,
pkg-config,
openssl,
testers,
zizmor,
}:
rustPlatform.buildRustPackage rec {
pname = "zizmor";
version = "1.0.0";
version = "1.0.1";
src = fetchFromGitHub {
owner = "woodruffw";
repo = "zizmor";
tag = "v${version}";
hash = "sha256-95YtFlnC8xFBz1v+qC3rh7jEUp+4JBoMGgVQd/6IFwE=";
hash = "sha256-1NpwBjJlpaP3iyTfrgMwO/1qR74/MNBYjtf4+wCe4m8=";
};
cargoHash = "sha256-imq7ElZcC9E4nDkHaaFiBf8r1VuMtw5zOn9O7EzIPkQ=";
buildInputs = [ openssl ];
cargoHash = "sha256-feAfHkcLvEdFblehPGtLO01Vl9QpOueuJrpEujlv4qY=";
nativeBuildInputs = [ pkg-config ];