action-validator: 0.6.0 -> 0.6.0-unstable-2025-02-16

Diff: https://github.com/mpalmer/action-validator/compare/v0.6.0...2f8be1d2066eb3687496a156d00b4f1b3ea7b028

Required including 6573ff1273 to fix following build error

"error: older versions of the `wasm-bindgen` crate are incompatible with current versions of Rust"
This commit is contained in:
Kenichi Kamiya 2025-05-03 11:37:59 +09:00
parent 870746a05c
commit 79caba80c0
No known key found for this signature in database
GPG key ID: 9BE4016A38165CCB

View file

@ -2,22 +2,28 @@
lib, lib,
rustPlatform, rustPlatform,
fetchFromGitHub, fetchFromGitHub,
unstableGitUpdater,
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage {
pname = "action-validator"; pname = "action-validator";
version = "0.6.0"; version = "0.6.0-unstable-2025-02-16";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mpalmer"; owner = "mpalmer";
repo = "action-validator"; repo = "action-validator";
rev = "v${version}"; rev = "2f8be1d2066eb3687496a156d00b4f1b3ea7b028";
hash = "sha256-lJHGx/GFddIwVVXRj75Z/l5CH/yuw/uIhr02Qkjruww="; hash = "sha256-QDnikgAfkrvn7/vnmgTQ5J8Ro2HZ6SVkp9cPUYgejqM=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
useFetchCargoVendor = true; useFetchCargoVendor = true;
cargoHash = "sha256-dy66ZkU9lIYGe9T3oR8m5cGcBQO5MF1KsLjfaHTtvlY="; cargoHash = "sha256-FuJ5NzeZhfN312wK5Q1DgIXUAN6hqxu/1BhGqasbdS8=";
passthru.updateScript = unstableGitUpdater {
tagPrefix = "v";
branch = "main";
};
meta = with lib; { meta = with lib; {
description = "Tool to validate GitHub Action and Workflow YAML files"; description = "Tool to validate GitHub Action and Workflow YAML files";