core/pkgs/common-updater/packages.nix

22 lines
563 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ ... }:
res: pkgs: super:
with pkgs;
{
common-updater-scripts = callPackage ./scripts.nix { };
genericUpdater = callPackage ./generic-updater.nix { };
_experimental-update-script-combinators = callPackage ./combinators.nix { };
directoryListingUpdater = callPackage ./directory-listing-updater.nix { };
gitUpdater = callPackage ./git-updater.nix { };
httpTwoLevelsUpdater = callPackage ./http-two-levels-updater.nix { };
unstableGitUpdater = callPackage ./unstable-updater.nix { };
nix-update-script = callPackage ./nix-update.nix { };
}