about summary refs log tree commit diff
path: root/pkgs/applications/graphics/yeetgif
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2023-01-25 10:33:59 +0000
committerAaron Jheng <wentworth@outlook.com>2023-01-25 11:09:38 +0000
commit4b0e37c4c75f5baaef24c6eb87149de403f1d04b (patch)
tree088edfd85f13e4e3f6b48dae52be61bc8bf6333a /pkgs/applications/graphics/yeetgif
parent4d52a644a7d82695f499198bcfb196c482b442bf (diff)
yeetgif: use buildGoModule
Diffstat (limited to 'pkgs/applications/graphics/yeetgif')
-rw-r--r--pkgs/applications/graphics/yeetgif/default.nix21
1 files changed, 16 insertions, 5 deletions
diff --git a/pkgs/applications/graphics/yeetgif/default.nix b/pkgs/applications/graphics/yeetgif/default.nix
index 84bcdee5b76ed..d464b56cb2650 100644
--- a/pkgs/applications/graphics/yeetgif/default.nix
+++ b/pkgs/applications/graphics/yeetgif/default.nix
@@ -1,18 +1,29 @@
-{ buildGoPackage, fetchFromGitHub, lib }:
+{ buildGoModule, fetchFromGitHub, fetchpatch, lib }:
 
-buildGoPackage rec {
+buildGoModule rec {
   pname = "yeetgif";
   version = "1.23.6";
 
-  goPackagePath = "github.com/sgreben/yeetgif";
-
   src = fetchFromGitHub {
     owner = "sgreben";
     repo = pname;
     rev = version;
-    sha256 = "05z1ylsra60bb4cvr383g9im94zsph1dgicqbv5p73qgs634ckk7";
+    hash = "sha256-Z05GhtEPj3PLXpjF1wK8+pNUY3oDjbwZWQsYlTX14Rc=";
   };
 
+  deleteVendor = true;
+  vendorHash = "sha256-LhkOMCuYO4GHezk21SlI2dP1UPmBp4bv2SdNbUQMKsI=";
+
+  patches = [
+    # Add Go Modules support
+    (fetchpatch {
+      url = "https://github.com/sgreben/yeetgif/commit/5d2067b9832898c2b1ac51bf6a5f107619038270.patch";
+      hash = "sha256-3eyqbpPyuQHjAN5mjQyZo0xY6L683T5Ytyx02II/iU4=";
+    })
+  ];
+
+  ldflags = [ "-s" "-w" ];
+
   meta = with lib; {
     description = "gif effects CLI. single binary, no dependencies. linux, osx, windows. #1 workplace productivity booster. #yeetgif #eggplant #golang";
     homepage = "https://github.com/sgreben/yeetgif";