about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2023-08-16 11:28:58 +0800
committerAaron Jheng <wentworth@outlook.com>2023-08-16 11:28:58 +0800
commit2fb327fbe6402a096fc33048124b8d87aaf95348 (patch)
tree9902d1980806a98e0802827fe420d610bce82bf3
parent88362a759c2729f60c539c3990601a41866b0d9a (diff)
meme-image-generator: use sri hash
-rw-r--r--pkgs/applications/graphics/meme-image-generator/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/meme-image-generator/default.nix b/pkgs/applications/graphics/meme-image-generator/default.nix
index 7418aa07c75bc..198f68577487b 100644
--- a/pkgs/applications/graphics/meme-image-generator/default.nix
+++ b/pkgs/applications/graphics/meme-image-generator/default.nix
@@ -11,16 +11,15 @@ buildGoModule rec {
     owner = "nomad-software";
     repo = "meme";
     rev = "v${version}";
-    sha256 = "089r0v5az2d2njn0s3d3wd0861pcs4slg6zl0rj4cm1k5cj8yd1k";
+    hash = "sha256-MzSPJCszVEZkBvSbRzXR7AaDQOOjDQ2stKKJr8oGOSE=";
   };
 
-  vendorSha256 = null;
+  vendorHash = null;
 
   meta = with lib; {
     description = "A command line utility for creating image macro style memes";
     homepage = "https://github.com/nomad-software/meme";
     license = licenses.mit;
     maintainers = [ maintainers.fgaz ];
-    platforms = with platforms; linux ++ darwin;
   };
 }