httpTwoLevelsUpdater
pkgs.httpTwoLevelsUpdater
Functor
Docs pulled from | This Revision | 15 minutes ago
Contribute
Enhance the ecosystem with your expertise! Contribute to fill the gaps in documentation. Your input can make a difference.
Noogle detected
This is a Functor
Learn about functors
Implementation
The following is the current implementation of this function.
{
pname ? null,
version ? null,
attrPath ? null,
allowedVersions ? "",
ignoredVersions ? "",
rev-prefix ? "",
rev-suffix ? "",
odd-unstable ? false,
patchlevel-unstable ? false,
url ? null,
}:
genericUpdater {
inherit
pname
version
attrPath
allowedVersions
ignoredVersions
rev-prefix
rev-suffix
odd-unstable
patchlevel-unstable
;
versionLister = "${common-updater-scripts}/bin/list-archive-two-levels-versions ${
lib.optionalString (url != null) "--url=${lib.escapeShellArg url}"
}";
}