Merge pull request #230902 from Aleksanaa/hcledit

This commit is contained in:
figsoda
2023-05-09 20:31:48 -04:00
committed by GitHub
2 changed files with 27 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{ 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
View File
@@ -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 { };