python312Packages.llm-gguf: init at 0.2 (#364926)
[NixPkgs.git] / pkgs / by-name / ac / action-validator / package.nix
bloba82c792b1fca18bd2ade003f14947d0b48c47533
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "action-validator";
9   version = "0.6.0";
11   src = fetchFromGitHub {
12     owner = "mpalmer";
13     repo = "action-validator";
14     rev = "v${version}";
15     hash = "sha256-lJHGx/GFddIwVVXRj75Z/l5CH/yuw/uIhr02Qkjruww=";
16     fetchSubmodules = true;
17   };
19   cargoHash = "sha256-mBY+J6JcIhV++tO6Dhw5JvYLSwoYZR3lB3l0KTjkcQM=";
21   meta = with lib; {
22     description = "Tool to validate GitHub Action and Workflow YAML files";
23     homepage = "https://github.com/mpalmer/action-validator";
24     license = licenses.gpl3Plus;
25     mainProgram = "action-validator";
26     maintainers = with maintainers; [ thiagokokada ];
27   };