Unverified Commit 40cdc211 authored by Emily's avatar Emily Committed by GitHub
Browse files

Merge pull request #236054 from deemp/refmt

refmt: init at 1.16.0
parents 12adf077 419b8347
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -3764,6 +3764,12 @@
      fingerprint = "9B43 6B14 77A8 79C2 6CDB  6604 C171 2510 02C2 00F2";
    }];
  };
  deemp = {
    email = "deempleton@gmail.com";
    github = "deemp";
    githubId = 48378098;
    name = "Danila Danko";
  };
  deepfire = {
    email = "_deepfire@feelingofgreen.ru";
    github = "deepfire";
+22 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -39797,6 +39797,8 @@ with pkgs;
  refind = callPackage ../tools/bootloaders/refind { };
  refmt = callPackage ../development/tools/refmt { };
  spectra = callPackage ../development/libraries/spectra { };
  spectrojack = callPackage ../applications/audio/spectrojack { };