about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-09-12 04:20:00 +0000
committerEmery Hemingway <ehmry@posteo.net>2023-09-13 08:09:05 +0200
commit69ae2d6bba5b17fd089ec27d4dacf9d6d937938b (patch)
tree3f2e80314045f16fc43ffded869e13a314303237 /pkgs/applications/networking/mailreaders
parent8707f43083d7fd106ee499214d30ba4bb5853a15 (diff)
notmuch: add updateScript
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/notmuch/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/applications/networking/mailreaders/notmuch/default.nix b/pkgs/applications/networking/mailreaders/notmuch/default.nix
index 79b4ea41ddd76..3704efb68c6be 100644
--- a/pkgs/applications/networking/mailreaders/notmuch/default.nix
+++ b/pkgs/applications/networking/mailreaders/notmuch/default.nix
@@ -7,6 +7,7 @@
 , emacs
 , ruby
 , testers
+, gitUpdater
 , which, dtach, openssl, bash, gdb, man, git
 , withEmacs ? true
 , withRuby ? true
@@ -131,6 +132,11 @@ stdenv.mkDerivation rec {
     pythonSourceRoot = "notmuch-${version}/bindings/python";
     tests.version = testers.testVersion { package = notmuch; };
     inherit version;
+
+    updateScript = gitUpdater {
+      url = "https://git.notmuchmail.org/git/notmuch";
+      ignoredVersions = "_rc.*";
+    };
   };
 
   meta = with lib; {