regal: init at 0.21.0

Signed-off-by: Rintaro Okamura <rintaro.okamura@gmail.com>
This commit is contained in:
Rintaro Okamura 2024-04-24 23:15:17 +09:00
parent 74b865e2e2
commit 4b84fdd767
No known key found for this signature in database
GPG Key ID: E422156DF72233FA

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 ];
};
}