From f5d30774ec9d24f74a979573333cb281a108db34 Mon Sep 17 00:00:00 2001 From: Atemu Date: Tue, 16 Jan 2024 16:49:56 +0100 Subject: [PATCH] umr: use nix-update-script --- pkgs/development/misc/umr/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/misc/umr/default.nix b/pkgs/development/misc/umr/default.nix index 59cf67e60de0..37177f926b68 100644 --- a/pkgs/development/misc/umr/default.nix +++ b/pkgs/development/misc/umr/default.nix @@ -14,6 +14,8 @@ , ncurses , SDL2 , bash-completion + +, nix-update-script }: stdenv.mkDerivation rec { @@ -50,6 +52,8 @@ stdenv.mkDerivation rec { rm -r $out/lib ''; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "A userspace debugging and diagnostic tool for AMD GPUs"; homepage = "https://gitlab.freedesktop.org/tomstdenis/umr";