From cd74ac90f511496fbdfacbb5eb8bb2039aa8a9d4 Mon Sep 17 00:00:00 2001 From: Aidan Gauland Date: Thu, 29 Dec 2022 09:22:02 +1300 Subject: [PATCH] legendary-gl: Add updateScript --- pkgs/games/legendary-gl/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/games/legendary-gl/default.nix b/pkgs/games/legendary-gl/default.nix index 54532b2b963d..7def07dfc07f 100644 --- a/pkgs/games/legendary-gl/default.nix +++ b/pkgs/games/legendary-gl/default.nix @@ -1,4 +1,5 @@ { lib +, gitUpdater , fetchFromGitHub , buildPythonApplication , pythonOlder @@ -31,4 +32,6 @@ buildPythonApplication rec { license = licenses.gpl3; maintainers = with maintainers; [ equirosa ]; }; + + passthru.updateScript = gitUpdater { }; }