Skip to content

Commit

Permalink
Merge pull request #260217 from thiagokokada/action-validator-init
Browse files Browse the repository at this point in the history
action-validator: init at 0.5.3
  • Loading branch information
thiagokokada authored Oct 10, 2023
2 parents 9c65ee8 + 549ff17 commit a2b87a4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/by-name/ac/action-validator/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
pname = "action-validator";
version = "0.5.3";

src = fetchFromGitHub {
owner = "mpalmer";
repo = "action-validator";
rev = "v${version}";
hash = "sha256-22oYPYGnNp4K68pbNMolGcIGDYqjT/3FibO/jv3IEvg=";
fetchSubmodules = true;
};

cargoHash = "sha256-CVDqXuAxI1vCZV4w8DS3fOrsYFvJoI35fbe+hnSahLc=";

meta = with lib; {
description = "Tool to validate GitHub Action and Workflow YAML files";
homepage = "https://github.com/mpalmer/action-validator";
license = licenses.gpl3Plus;
mainProgram = "action-validator";
maintainers = with maintainers; [ thiagokokada ];
};
}

0 comments on commit a2b87a4

Please sign in to comment.