summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorKira Bruneau <kira.bruneau@pm.me>2022-10-04 19:40:22 -0400
committerKira Bruneau <kira.bruneau@pm.me>2023-01-21 00:34:14 -0500
commitf8761c63e489075ba5f313d12db58dd77569f5b1 (patch)
tree290d0a2b62d2ab07edad012d81aad73e364bee25 /pkgs
parent676c80dcc2f0ba780c8ab204f92c5abd69fa1245 (diff)
downloadnixpkgs-f8761c63e489075ba5f313d12db58dd77569f5b1.tar
nixpkgs-f8761c63e489075ba5f313d12db58dd77569f5b1.tar.gz
nixpkgs-f8761c63e489075ba5f313d12db58dd77569f5b1.tar.bz2
nixpkgs-f8761c63e489075ba5f313d12db58dd77569f5b1.tar.lz
nixpkgs-f8761c63e489075ba5f313d12db58dd77569f5b1.tar.xz
nixpkgs-f8761c63e489075ba5f313d12db58dd77569f5b1.tar.zst
nixpkgs-f8761c63e489075ba5f313d12db58dd77569f5b1.zip
newsflash: add updateScript
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/feedreaders/newsflash/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/applications/networking/feedreaders/newsflash/default.nix b/pkgs/applications/networking/feedreaders/newsflash/default.nix
index 5d5e8615a85..a6775567876 100644
--- a/pkgs/applications/networking/feedreaders/newsflash/default.nix
+++ b/pkgs/applications/networking/feedreaders/newsflash/default.nix
@@ -17,6 +17,7 @@
 , glib-networking
 , librsvg
 , gst_all_1
+, gitUpdater
 }:
 
 stdenv.mkDerivation (finalAttrs: {
@@ -87,6 +88,11 @@ stdenv.mkDerivation (finalAttrs: {
     gst-plugins-bad
   ]);
 
+
+  passthru.updateScript = gitUpdater {
+    rev-prefix = "v.";
+  };
+
   meta = with lib; {
     description = "A modern feed reader designed for the GNOME desktop";
     homepage = "https://gitlab.com/news-flash/news_flash_gtk";