about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2023-11-27 11:51:28 +0100
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2023-11-27 11:56:40 +0100
commit1ed22e19742f3ff12361f12f4722f62b526436c1 (patch)
tree4f177b8d39c5c61d72416cd73ba660bf6c577ee3 /pkgs/applications/networking/p2p
parent21ea9c80732bc4168ed38c5c2f1f4df37c57a6dd (diff)
transgui: set updateScript to unstableGitUpdater
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/transgui/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/networking/p2p/transgui/default.nix b/pkgs/applications/networking/p2p/transgui/default.nix
index ac938e47691ea..4f3f711d1f2c7 100644
--- a/pkgs/applications/networking/p2p/transgui/default.nix
+++ b/pkgs/applications/networking/p2p/transgui/default.nix
@@ -1,5 +1,6 @@
 { lib, stdenv, fetchFromGitHub, pkg-config, makeDesktopItem, fetchpatch, unzip
-, fpc, lazarus, libX11, glib, gtk2, gdk-pixbuf, pango, atk, cairo, openssl }:
+, fpc, lazarus, libX11, glib, gtk2, gdk-pixbuf, pango, atk, cairo, openssl
+, unstableGitUpdater }:
 
 stdenv.mkDerivation rec {
   pname = "transgui";
@@ -9,7 +10,7 @@ stdenv.mkDerivation rec {
     owner = "transmission-remote-gui";
     repo = "transgui";
     rev = "b1f5c2334edb6659c04863ef4a534ba1e57284f0";
-    sha256 = "sha256-XCokcA5lINC9B+qwg0vjkymwa16ZNHRKLI829+X7CvE=";
+    hash = "sha256-XCokcA5lINC9B+qwg0vjkymwa16ZNHRKLI829+X7CvE=";
   };
 
   nativeBuildInputs = [ pkg-config unzip ];
@@ -59,6 +60,8 @@ stdenv.mkDerivation rec {
     cp -r "./lang" "$out/share/transgui"
   '';
 
+  passthru.updateScript = unstableGitUpdater { };
+
   meta = {
     description = "A cross platform front-end for the Transmission BitTorrent client";
     homepage = "https://sourceforge.net/p/transgui";