nixpkgs/pkgs/development/tools/yamlfmt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
607 B
Nix
Raw Normal View History

2023-02-06 21:44:21 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "yamlfmt";
2023-04-07 03:04:33 +00:00
version = "0.9.0";
2023-02-06 21:44:21 +00:00
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
2023-04-07 03:04:33 +00:00
sha256 = "sha256-l081PgSAT9h2oHp1eH96XztcCLeyv1Y11l6lJhHQj1I=";
2023-02-06 21:44:21 +00:00
};
2023-04-07 03:04:33 +00:00
vendorHash = "sha256-qrHrLOfyJhsuU75arDtfOhLaLqP+GWTfX+oyLX3aea8=";
2023-02-06 21:44:21 +00:00
doCheck = false;
meta = with lib; {
description = "An extensible command line tool or library to format yaml files.";
homepage = "https://github.com/google/yamlfmt";
license = licenses.asl20;
maintainers = with maintainers; [ sno2wman ];
};
}