mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
refmt: init at 1.16.0
About: Reformat HCL ⇄ JSON ⇄ YAML. Release: https://github.com/rjeczalik/refmt/releases/tag/v1.6.1
This commit is contained in:
parent
5d1d55743d
commit
419b83474c
22
pkgs/development/tools/refmt/default.nix
Normal file
22
pkgs/development/tools/refmt/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "refmt";
|
||||
version = "1.6.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rjeczalik";
|
||||
repo = "refmt";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-HiAWSR2S+3OcIgwdQ0ltW37lcG+OHkDRDUF07rfNcJY=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-MiYUDEF9W0VAiOX6uE8doXtGAekIrA1cfA8A2a7xd2I=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Reformat HCL <-> JSON <-> YAML";
|
||||
homepage = "https://github.com/rjeczalik/refmt";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with lib.maintainers; [ deemp ];
|
||||
};
|
||||
}
|
@ -39691,6 +39691,8 @@ with pkgs;
|
||||
|
||||
refind = callPackage ../tools/bootloaders/refind { };
|
||||
|
||||
refmt = callPackage ../development/tools/refmt { };
|
||||
|
||||
spectra = callPackage ../development/libraries/spectra { };
|
||||
|
||||
spectrojack = callPackage ../applications/audio/spectrojack { };
|
||||
|
Loading…
Reference in New Issue
Block a user