summary refs log blame commit diff
path: root/pkgs/common-updater/directory-listing-updater.nix
blob: fb7491ab879ace3a1ff4a08037fdcac02d6a654d (plain) (tree)


















                                                                                                                                                
{ lib
, genericUpdater
, common-updater-scripts
}:

{ pname ? null
, version ? null
, attrPath ? null
, ignoredVersions ? ""
, rev-prefix ? ""
, odd-unstable ? false
, patchlevel-unstable ? false
, url ? null
}:

genericUpdater {
  inherit pname version attrPath ignoredVersions rev-prefix odd-unstable patchlevel-unstable;
  versionLister = "${common-updater-scripts}/bin/list-directory-versions ${lib.optionalString (url != null) "--url=${lib.escapeShellArg url}"}";
}