mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
27 lines
740 B
Nix
27 lines
740 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "hclfmt";
|
|
version = "2.15.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hashicorp";
|
|
repo = "hcl";
|
|
rev = "v${version}";
|
|
hash = "sha256-bGxgL/Vajy2AtYtSE5/RoURvHHyajpXpR8m7DUeqsks=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-QZzDFVAmmjkm7n/KpMxDMAjShKiVVGZbZB1W3/TeVjs=";
|
|
|
|
# The code repository includes other tools which are not useful. Only build
|
|
# hclfmt.
|
|
subPackages = [ "cmd/hclfmt" ];
|
|
|
|
meta = with lib; {
|
|
description = "a code formatter for the Hashicorp Configuration Language (HCL) format";
|
|
homepage = "https://github.com/hashicorp/hcl/tree/main/cmd/hclfmt";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
};
|
|
}
|