biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / hcledit / default.nix
blob2328840648c131f47d37b21d779bea74071db589
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "hcledit";
8   version = "0.2.15";
10   src = fetchFromGitHub {
11     owner = "minamijoyo";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-EJSV7CsxnRCsVcqsJcImqeELdeg6Mnf7N6S9TlMbTaE=";
15   };
17   vendorHash = "sha256-G6jmdosQHBA+n7MgVAlzdSTqPYb5d+k4b4EzAI384FQ=";
19   meta = with lib; {
20     description = "Command line editor for HCL";
21     mainProgram = "hcledit";
22     homepage = "https://github.com/minamijoyo/hcledit";
23     license = licenses.mit;
24     maintainers = with maintainers; [ aleksana ];
25   };