From 0fc6a60ecc20d72d218465831f2882544881d71c Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Mon, 9 May 2022 17:02:34 -0400 Subject: [PATCH] flyctl: fix ldflags date parsing --- pkgs/development/web/flyctl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/web/flyctl/default.nix b/pkgs/development/web/flyctl/default.nix index 8850f495027..0e569ad70df 100644 --- a/pkgs/development/web/flyctl/default.nix +++ b/pkgs/development/web/flyctl/default.nix @@ -18,7 +18,7 @@ buildGoModule rec { ldflags = [ "-s" "-w" "-X github.com/superfly/flyctl/internal/buildinfo.commit=${src.rev}" - "-X github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00+0000" + "-X github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00Z" "-X github.com/superfly/flyctl/internal/buildinfo.environment=production" "-X github.com/superfly/flyctl/internal/buildinfo.version=${version}" ]; @@ -40,6 +40,6 @@ buildGoModule rec { downloadPage = "https://github.com/superfly/flyctl"; homepage = "https://fly.io/"; license = licenses.asl20; - maintainers = with maintainers; [ aaronjanse jsierles ]; + maintainers = with maintainers; [ aaronjanse jsierles techknowlogick ]; }; }