Merge pull request #293260 from r-ryantm/auto-update/odin
[NixPkgs.git] / pkgs / common-updater / http-two-levels-updater.nix
blob4656163c18a3f4a56c90cb2293c9020328c04e98
1 { lib
2 , genericUpdater
3 , common-updater-scripts
4 }:
6 { pname ? null
7 , version ? null
8 , attrPath ? null
9 , ignoredVersions ? ""
10 , rev-prefix ? ""
11 , odd-unstable ? false
12 , patchlevel-unstable ? false
13 , url ? null
16 genericUpdater {
17   inherit pname version attrPath ignoredVersions rev-prefix odd-unstable patchlevel-unstable;
18   versionLister = "${common-updater-scripts}/bin/list-archive-two-levels-versions ${lib.optionalString (url != null) "--url=${lib.escapeShellArg url}"}";