about summary refs log tree commit diff
path: root/pkgs/development/web/flyctl
diff options
context:
space:
mode:
authorStanisław Pitucha <git@viraptor.info>2023-11-04 22:10:16 +1100
committerStanisław Pitucha <git@viraptor.info>2023-11-04 22:10:16 +1100
commit6a551a4a86ac72416588a363a073fd0ae93b7c74 (patch)
tree7af4d491d008ea4e9c580058e690a843d0e2d55e /pkgs/development/web/flyctl
parent880c206efc49f624b12270564a2c9f041c0af3c7 (diff)
downloadnixlib-6a551a4a86ac72416588a363a073fd0ae93b7c74.tar
nixlib-6a551a4a86ac72416588a363a073fd0ae93b7c74.tar.gz
nixlib-6a551a4a86ac72416588a363a073fd0ae93b7c74.tar.bz2
nixlib-6a551a4a86ac72416588a363a073fd0ae93b7c74.tar.lz
nixlib-6a551a4a86ac72416588a363a073fd0ae93b7c74.tar.xz
nixlib-6a551a4a86ac72416588a363a073fd0ae93b7c74.tar.zst
nixlib-6a551a4a86ac72416588a363a073fd0ae93b7c74.zip
flyctl: 0.1.104 -> 0.1.117
Update tags and build info handling
Diffstat (limited to 'pkgs/development/web/flyctl')
-rw-r--r--pkgs/development/web/flyctl/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/web/flyctl/default.nix b/pkgs/development/web/flyctl/default.nix
index 249be524add5..4ced81546ca9 100644
--- a/pkgs/development/web/flyctl/default.nix
+++ b/pkgs/development/web/flyctl/default.nix
@@ -2,26 +2,25 @@
 
 buildGoModule rec {
   pname = "flyctl";
-  version = "0.1.104";
+  version = "0.1.117";
 
   src = fetchFromGitHub {
     owner = "superfly";
     repo = "flyctl";
     rev = "v${version}";
-    hash = "sha256-iTizgA3MtcG6YN7aHaZF4UXT6jBKodsMxXG61UgDNaQ=";
+    hash = "sha256-cB1t7TKAqHuzbvrXkOMJPXtNXTqNB/TBDS3OHYX96ko=";
   };
 
-  vendorHash = "sha256-5Nu9XpYjlZHGazWTK7LmfnEGgewKa017PLHtV9HycD0=";
+  vendorHash = "sha256-+mCOSgRmvfAXHwtLup3vYhLY0zTtXIJeOtYD69B4/7o=";
 
   subPackages = [ "." ];
 
   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:00Z"
-    "-X github.com/superfly/flyctl/internal/buildinfo.environment=production"
-    "-X github.com/superfly/flyctl/internal/buildinfo.version=${version}"
+    "-X github.com/superfly/flyctl/internal/buildinfo.buildVersion=${version}"
   ];
+  tags = ["production"];
 
   nativeBuildInputs = [ installShellFiles ];