Unverified Commit c74fd1b8 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

Merge pull request #230297 from alias-dev/feature/regols

regols: init at 0.2.2
parents 3d3b99ad 6efcd668
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -793,6 +793,12 @@
    githubId = 5053729;
    name = "Alias Gram";
  };
  alias-dev = {
    email = "alias-dev@protonmail.com";
    github = "alias-dev";
    githubId = 30437811;
    name = "Alex Andrews";
  };
  alibabzo = {
    email = "alistair.bill@gmail.com";
    github = "alistairbill";
+22 −0
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "regols";
  version = "0.2.2";

  src = fetchFromGitHub {
    owner = "kitagry";
    repo = "regols";
    rev = "v${version}";
    hash = "sha256-2ZwmIlv3kJ26p15t7NvB9sX2GO+B3ypeNl50b7XA0Iw=";
  };

  vendorHash = "sha256-N6gtkZSNLXz3B961grM3xHzm7x4/kzcLkDOgiFLGp8U=";

  meta = with lib; {
    description = "OPA Rego language server";
    homepage = "https://github.com/kitagry/regols";
    license = licenses.mit;
    maintainers = with maintainers; [ alias-dev ];
  };
}