Unverified Commit a0527721 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #230902 from Aleksanaa/hcledit

parents a78d428a d17ecf56
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "hcledit";
  version = "0.2.7";

  src = fetchFromGitHub {
    owner = "minamijoyo";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-hunM29K6RgeVkY8nNNIYigCh2sTCR1OyPE+k3cmIJTU=";
  };

  vendorHash = "sha256-KwoauyXeDMMTUgtLvz6m28nvFSl5fptZzEvwFVC3n8g=";

  meta = with lib; {
    description = "A command line editor for HCL";
    homepage = "https://github.com/minamijoyo/hcledit";
    license = licenses.mit;
    maintainers = with maintainers; [ aleksana ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -8395,6 +8395,8 @@ with pkgs;
  hcl2json = callPackage ../applications/misc/hcl2json { };
  hcledit = callPackage ../tools/text/hcledit { };
  hcxtools = callPackage ../tools/security/hcxtools { };
  hcxdumptool = callPackage ../tools/security/hcxdumptool { };