summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaghav Sood <r@raghavsood.com>2024-06-19 11:37:45 +0800
committerRaghav Sood <r@raghavsood.com>2024-06-19 11:37:45 +0800
commitaf4cd5b00e583fe2feab47025fca1eea7b1077fb (patch)
treee4f81c8a72c332624a3221a322dad2ca76920cf9
parent971ea0a28ad94b23d221c8377120340a303fc736 (diff)
flyctl: 0.2.71 -> 0.2.72
-rw-r--r--pkgs/development/web/flyctl/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/web/flyctl/default.nix b/pkgs/development/web/flyctl/default.nix
index f328190773ae..e04421421180 100644
--- a/pkgs/development/web/flyctl/default.nix
+++ b/pkgs/development/web/flyctl/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "flyctl";
- version = "0.2.71";
+ version = "0.2.72";
src = fetchFromGitHub {
owner = "superfly";
repo = "flyctl";
rev = "v${version}";
- hash = "sha256-d2qoTRWuUh7Kn0uqT3fIlB8BbFJmyVEIlfInS3m+etc=";
+ hash = "sha256-v2+xDeErVkgiGavPpBtKg7+BBhiKZdmbo2NIFL7iXvw=";
};
vendorHash = "sha256-iRZrjkWQxuUW/YM5TygFt+g8suM5iLGsWsCt4QQOX3M=";
@@ -35,14 +35,12 @@ buildGoModule rec {
'';
# We override checkPhase to be able to test ./... while using subPackages
- # Temporary fix for https://github.com/superfly/flyctl/issues/3642. We
- # should go back to buildGoDir instead of go test once that is resolved.
checkPhase = ''
runHook preCheck
# We do not set trimpath for tests, in case they reference test assets
export GOFLAGS=''${GOFLAGS//-trimpath/}
- go test ./...
+ buildGoDir test ./...
runHook postCheck
'';