dockfmt: 0.3.3 -> unstable-2020-09-18

This commit is contained in:
Peter Hoeg 2023-03-02 18:01:09 +08:00
parent f54f794afb
commit 26c3ff3794

View file

@ -5,13 +5,14 @@
buildGoModule rec { buildGoModule rec {
pname = "dockfmt"; pname = "dockfmt";
version = "0.3.3"; version = "unstable-2020-09-18";
# The latest released version doesn't support reading from stdin.
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jessfraz"; owner = "jessfraz";
repo = "dockfmt"; repo = "dockfmt";
rev = "v${version}"; rev = "1455059b8bb53ab4723ef41946c43160583a8333";
sha256 = "0m56ydmf7zbcsa5yym7j5fgr75v677h9s40zyzwrqccyq01myp06"; hash = "sha256-wEC9kENcE3u+Mb7uLbx/VBUup6PBnCY5cxTYvkJcavg=";
}; };
vendorSha256 = null; vendorSha256 = null;
@ -25,7 +26,7 @@ buildGoModule rec {
meta = with lib; { meta = with lib; {
description = "Dockerfile format"; description = "Dockerfile format";
homepage = "https://github.com/jessfraz/dockfmt"; homepage = "https://github.com/jessfraz/dockfmt";
license = [ licenses.mit ]; license = licenses.mit;
maintainers = [ maintainers.cpcloud ]; maintainers = with maintainers; [ cpcloud ];
}; };
} }