2022-04-01 17:49:38 +01:00
|
|
|
{ lib
|
|
|
|
, genericUpdater
|
2022-02-21 01:11:49 +00:00
|
|
|
, common-updater-scripts
|
|
|
|
}:
|
|
|
|
|
2022-09-27 21:49:23 +01:00
|
|
|
{ pname ? null
|
|
|
|
, version ? null
|
|
|
|
, attrPath ? null
|
2024-06-24 23:24:25 +01:00
|
|
|
, allowedVersions ? ""
|
2022-02-21 01:11:49 +00:00
|
|
|
, ignoredVersions ? ""
|
|
|
|
, rev-prefix ? ""
|
|
|
|
, odd-unstable ? false
|
|
|
|
, patchlevel-unstable ? false
|
2022-04-23 19:47:54 +01: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 17:49:38 +01:00
|
|
|
, url ? null
|
2022-02-21 01:11:49 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
genericUpdater {
|
2024-06-24 23:24:25 +01:00
|
|
|
inherit pname version attrPath allowedVersions ignoredVersions rev-prefix odd-unstable patchlevel-unstable;
|
2022-04-01 17:49:38 +01:00
|
|
|
versionLister = "${common-updater-scripts}/bin/list-git-tags ${lib.optionalString (url != null) "--url=${url}"}";
|
2022-02-21 01:11:49 +00:00
|
|
|
}
|