aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2020-12-02 17:22:39 +0100
committerFrancesco Gazzetta <fgaz@fgaz.me>2020-12-02 17:22:39 +0100
commit86e91a15f365c541d62687552247be7839f63287 (patch)
tree69571d8488127fdab91166936ef1122d2851a960 /pkgs/applications
parent30c6b9793f25dbe2ca8df30e506ee81c13187994 (diff)
meme: use unstableGitUpdater
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/graphics/meme/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/meme/default.nix b/pkgs/applications/graphics/meme/default.nix
index 5f8a0bb6eed3..8cbc776132e6 100644
--- a/pkgs/applications/graphics/meme/default.nix
+++ b/pkgs/applications/graphics/meme/default.nix
@@ -1,8 +1,12 @@
-{ stdenv, buildGoPackage, fetchFromGitHub }:
+{ stdenv
+, buildGoPackage
+, unstableGitUpdater
+, fetchFromGitHub
+}:
buildGoPackage rec {
- pname = "meme-unstable";
- version = "2017-09-10";
+ pname = "meme";
+ version = "unstable-2017-09-10";
owner = "nomad-software";
repo = "meme";
@@ -14,6 +18,8 @@ buildGoPackage rec {
sha256 = "1gbsv1d58ck6mj89q31s5b0ppw51ab76yqgz39jgwqnkidvzdfly";
};
+ passthru.updateScript = unstableGitUpdater { };
+
meta = with stdenv.lib; {
description = "A command line utility for creating image macro style memes";
homepage = "https://github.com/nomad-software/meme";