2022-04-01 16:49:38 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
genericUpdater,
|
2022-02-21 01:11:49 +00:00
|
|
|
common-updater-scripts,
|
|
|
|
}:
|
|
|
|
|
2022-09-27 20:49:23 +00:00
|
|
|
{
|
|
|
|
pname ? null,
|
|
|
|
version ? null,
|
|
|
|
attrPath ? null,
|
2024-06-24 22:24:25 +00:00
|
|
|
allowedVersions ? "",
|
2022-02-21 01:11:49 +00:00
|
|
|
ignoredVersions ? "",
|
|
|
|
rev-prefix ? "",
|
|
|
|
odd-unstable ? false,
|
|
|
|
patchlevel-unstable ? false,
|
2022-04-23 18:47:54 +00:00
|
|
|
# an explicit url is needed when src.meta.homepage or src.url don't
|
|
|
|
# point to a git repo (eg. when using fetchurl, fetchzip, ...)
|
2022-04-01 16:49:38 +00:00
|
|
|
url ? null,
|
2022-02-21 01:11:49 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
genericUpdater {
|
2024-06-24 22:24:25 +00:00
|
|
|
inherit
|
|
|
|
pname
|
|
|
|
version
|
|
|
|
attrPath
|
|
|
|
allowedVersions
|
|
|
|
ignoredVersions
|
|
|
|
rev-prefix
|
|
|
|
odd-unstable
|
|
|
|
patchlevel-unstable
|
2022-04-01 16:49:38 +00:00
|
|
|
;
|
|
|
|
versionLister = "${common-updater-scripts}/bin/list-git-tags ${
|
|
|
|
lib.optionalString (url != null) "--url=${url}"
|
|
|
|
}";
|
2022-02-21 01:11:49 +00:00
|
|
|
}
|