about summary refs log tree commit diff
path: root/pkgs/applications/graphics/hello-wayland
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-04-23 16:19:05 +0000
committerAlyssa Ross <hi@alyssa.is>2023-04-27 20:07:28 +0000
commit6bda19fb912049d6801b3402225a3ee6fdce6cef (patch)
treefffdf78f792640fbf046c3edbd8b78c7bc526f29 /pkgs/applications/graphics/hello-wayland
parent28fb1e5a60f63ce1d615a95a7e70c48cc7b96f1d (diff)
hello-wayland: add update script
Diffstat (limited to 'pkgs/applications/graphics/hello-wayland')
-rw-r--r--pkgs/applications/graphics/hello-wayland/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/hello-wayland/default.nix b/pkgs/applications/graphics/hello-wayland/default.nix
index 7ecc43c449070..d3934fb8b8d41 100644
--- a/pkgs/applications/graphics/hello-wayland/default.nix
+++ b/pkgs/applications/graphics/hello-wayland/default.nix
@@ -1,5 +1,6 @@
 { stdenv, lib, fetchFromGitHub
 , imagemagick, pkg-config, wayland, wayland-protocols
+, unstableGitUpdater
 }:
 
 stdenv.mkDerivation {
@@ -23,6 +24,8 @@ stdenv.mkDerivation {
     runHook postBuild
   '';
 
+  passthru.updateScript = unstableGitUpdater { };
+
   meta = with lib; {
     description = "Hello world Wayland client";
     homepage = "https://github.com/emersion/hello-wayland";