gogdl: Add updateScript

This commit is contained in:
Aidan Gauland 2022-12-29 09:21:51 +13:00
parent cd74ac90f5
commit d29ebc00db
No known key found for this signature in database
GPG Key ID: 16E68DD2D0E77C91
2 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,5 @@
{ lib
, gitUpdater
, buildPythonApplication
, fetchFromGitHub
, pythonOlder
@ -33,4 +34,8 @@ buildPythonApplication rec {
license = with licenses; [ gpl3 ];
maintainers = with maintainers; [ aidalgol ];
};
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
}

View File

@ -32,6 +32,6 @@ buildPythonApplication rec {
license = licenses.gpl3;
maintainers = with maintainers; [ equirosa ];
};
passthru.updateScript = gitUpdater { };
}