about summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-03 22:15:30 -0500
committerGitHub <noreply@github.com>2020-03-03 22:15:30 -0500
commit5acc63513f5c1b05c235f4e499e6c43081864cdf (patch)
tree56362149b9d20cf9a3c204afa3ba3c8517f712dc /pkgs/development/tools/misc
parent2e001194f2aa0d5311ae2b01ca6771ba95e8c57a (diff)
parent5e75ba3f420d511db23b8fbf2f54dc92db60ff59 (diff)
downloadnixlib-5acc63513f5c1b05c235f4e499e6c43081864cdf.tar
nixlib-5acc63513f5c1b05c235f4e499e6c43081864cdf.tar.gz
nixlib-5acc63513f5c1b05c235f4e499e6c43081864cdf.tar.bz2
nixlib-5acc63513f5c1b05c235f4e499e6c43081864cdf.tar.lz
nixlib-5acc63513f5c1b05c235f4e499e6c43081864cdf.tar.xz
nixlib-5acc63513f5c1b05c235f4e499e6c43081864cdf.tar.zst
nixlib-5acc63513f5c1b05c235f4e499e6c43081864cdf.zip
Merge pull request #81663 from r-ryantm/auto-update/act
act: 0.2.4 -> 0.2.5
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/act/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/act/default.nix b/pkgs/development/tools/misc/act/default.nix
index 227fb27051a2..03bd2696cce5 100644
--- a/pkgs/development/tools/misc/act/default.nix
+++ b/pkgs/development/tools/misc/act/default.nix
@@ -2,20 +2,22 @@
 
 buildGoModule rec {
   pname = "act";
-  version = "0.2.4";
+  version = "0.2.5";
 
   src = fetchFromGitHub {
     owner = "nektos";
     repo = pname;
     rev = "v${version}";
-    sha256 = "1sn36686nfmqvhmippdapk0pxqx3x1q4dwdyhjr8j8scyfrk68iv";
+    sha256 = "00clafq3izvfwxkb85hf6s40yfw2hpsfz3xg4da28pgh1wlqb9ps";
   };
 
   modSha256 = "0ghp61m8fxg1iwq2ypmp99cqv3n16c06v2xzg9v34299vmd89gi2";
 
+  buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
+
   meta = with lib; {
     description = "Run your GitHub Actions locally";
-    homepage = "https://circleci.com/";
+    homepage = "https://github.com/nektos/act";
     license = licenses.mit;
     maintainers = with maintainers; [ filalex77 ];
   };