2022-04-27 09:35:20 +00:00
|
|
|
{ lib
|
|
|
|
, genericUpdater
|
2022-03-05 16:20:37 +00:00
|
|
|
, common-updater-scripts
|
|
|
|
}:
|
|
|
|
|
2022-10-06 18:32:54 +00:00
|
|
|
{ pname ? null
|
|
|
|
, version ? null
|
|
|
|
, attrPath ? null
|
2024-07-01 15:47:52 +00:00
|
|
|
, allowedVersions ? ""
|
2022-03-05 16:20:37 +00:00
|
|
|
, ignoredVersions ? ""
|
|
|
|
, rev-prefix ? ""
|
|
|
|
, odd-unstable ? false
|
|
|
|
, patchlevel-unstable ? false
|
2022-04-27 09:35:20 +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, ...)
|
|
|
|
, url ? null
|
2022-03-05 16:20:37 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
genericUpdater {
|
2024-07-01 15:47:52 +00:00
|
|
|
inherit pname version attrPath allowedVersions ignoredVersions rev-prefix odd-unstable patchlevel-unstable;
|
2022-04-27 09:35:20 +00:00
|
|
|
versionLister = "${common-updater-scripts}/bin/list-git-tags ${lib.optionalString (url != null) "--url=${url}"}";
|
2022-03-05 16:20:37 +00:00
|
|
|
}
|