Merge pull request #306550 from rinx/init-regal

regal: init at 0.21.0
This commit is contained in:
Nick Cao 2024-04-25 09:56:26 -04:00 committed by GitHub
commit 0ca1614446
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 29 additions and 0 deletions

View File

@ -17093,6 +17093,12 @@
githubId = 37246692;
name = "Riley Inman";
};
rinx = {
email = "rintaro.okamura@gmail.com";
github = "rinx";
githubId = 1588935;
name = "Rintaro Okamura";
};
riotbib = {
email = "lennart@cope.cool";
github = "riotbib";

View File

@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
name = "regal";
version = "0.21.0";
src = fetchFromGitHub {
owner = "StyraInc";
repo = "regal";
rev = "v${version}";
hash = "sha256-4qqwL+zzBLtN8DLgUsVVAjXKdAvvbo12PHQstptbFIc=";
};
vendorHash = "sha256-5rj2dCWya24VUmIFf0oJQop80trq9NnqqFlBW/A6opk=";
meta = with lib; {
description = "a linter and language server for Rego";
mainProgram = "regal";
homepage = "https://github.com/StyraInc/regal";
license = licenses.asl20;
maintainers = with maintainers; [ rinx ];
};
}