hcledit: init at 0.2.7

This commit is contained in:
aleksana
2023-05-10 03:03:49 +08:00
parent 2909d9b117
commit d17ecf5685
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
@@ -8363,6 +8363,8 @@ with pkgs;
hcl2json = callPackage ../applications/misc/hcl2json { };
hcledit = callPackage ../tools/text/hcledit { };
hcxtools = callPackage ../tools/security/hcxtools { };
hcxdumptool = callPackage ../tools/security/hcxdumptool { };