diff options
author | Gavin John | 2024-09-09 16:25:26 -0700 |
---|---|---|
committer | Gavin John | 2024-09-09 16:25:26 -0700 |
commit | e39e305b25edd489ce024dc5e5a9aa60983fb4e3 (patch) | |
tree | ac87f8cff7e62b524df3f63740e9466f36b0ffaf | |
parent | 9c622eb91dddd02ebeffdccee4d95c2dfd9c8cf3 (diff) |
waycheck: add updateScript
-rw-r--r-- | pkgs/by-name/wa/waycheck/package.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/by-name/wa/waycheck/package.nix b/pkgs/by-name/wa/waycheck/package.nix index 7f5e112b4a62..2494407b165b 100644 --- a/pkgs/by-name/wa/waycheck/package.nix +++ b/pkgs/by-name/wa/waycheck/package.nix @@ -9,6 +9,7 @@ wayland, glib, wrapGAppsHook3, + nix-update-script, }: stdenv.mkDerivation (finalAttrs: { @@ -49,6 +50,8 @@ stdenv.mkDerivation (finalAttrs: { qtWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; + passthru.updateScript = nix-update-script { }; + meta = { description = "Simple GUI that displays the protocols implemented by a Wayland compositor"; homepage = "https://gitlab.freedesktop.org/serebit/waycheck"; |