python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / common-updater / directory-listing-updater.nix
blobfb7491ab879ace3a1ff4a08037fdcac02d6a654d
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-directory-versions ${lib.optionalString (url != null) "--url=${lib.escapeShellArg url}"}";