dockfmt: init at 0.3.3

This commit is contained in:
Phillip Cloud 2021-09-03 06:28:10 -04:00
parent c9b7098690
commit fe18253847
No known key found for this signature in database
GPG key ID: D908212070FD785E
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "dockfmt";
version = "0.3.3";
src = fetchFromGitHub {
owner = "jessfraz";
repo = "dockfmt";
rev = "v${version}";
sha256 = "0m56ydmf7zbcsa5yym7j5fgr75v677h9s40zyzwrqccyq01myp06";
};
vendorSha256 = null;
meta = with lib; {
description = "Dockerfile format";
homepage = "https://github.com/jessfraz/dockfmt";
license = [ licenses.mit ];
maintainers = [ maintainers.cpcloud ];
};
}

View file

@ -24019,6 +24019,8 @@ with pkgs;
docker-distribution = callPackage ../applications/virtualization/docker/distribution.nix { };
dockfmt = callPackage ../development/tools/dockfmt { };
afterburn = callPackage ../tools/admin/afterburn {};
docker-buildx = callPackage ../applications/virtualization/docker/buildx.nix { };