summaryrefslogtreecommitdiffstats
path: root/pkgs/games/legendary-gl/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/legendary-gl/default.nix')
-rw-r--r--pkgs/games/legendary-gl/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/games/legendary-gl/default.nix b/pkgs/games/legendary-gl/default.nix
index b0247e8fe7bf..f867efc382d2 100644
--- a/pkgs/games/legendary-gl/default.nix
+++ b/pkgs/games/legendary-gl/default.nix
@@ -1,4 +1,5 @@
{ lib
+, gitUpdater
, fetchFromGitHub
, buildPythonApplication
, pythonOlder
@@ -7,13 +8,13 @@
buildPythonApplication rec {
pname = "legendary-gl"; # Name in pypi
- version = "0.20.30";
+ version = "0.20.31";
src = fetchFromGitHub {
owner = "derrod";
repo = "legendary";
rev = "refs/tags/${version}";
- sha256 = "sha256-LyA8crGm1ApkI4yqVayM92EHtisQLuNmuKiLTyPyFlk=";
+ sha256 = "sha256-XxCYL41xhtJ2z1Ps2ANTbzi4/PZu7lo78cRbr6R4iTM=";
};
propagatedBuildInputs = [ requests ];
@@ -31,4 +32,6 @@ buildPythonApplication rec {
license = licenses.gpl3;
maintainers = with maintainers; [ equirosa ];
};
+
+ passthru.updateScript = gitUpdater { };
}