deploy-rs icon indicating copy to clipboard operation
deploy-rs copied to clipboard

README refers to non-existant overlay attribute

Open RyanGibb opened this issue 6 months ago • 1 comments

Removed in https://github.com/serokell/deploy-rs/commit/6fc0024f184b34089175722778e331b1e5ddadff

From the README:

      overlays = [
        deploy-rs.overlay # or deploy-rs.overlays.default
        (self: super: { deploy-rs = { inherit (pkgs) deploy-rs; lib = super.deploy-rs.lib; }; })
      ];

which I think should read:

      overlays = [
        deploy-rs.overlays.default
        (self: super: { deploy-rs = { inherit (pkgs) deploy-rs; lib = super.deploy-rs.lib; }; })
      ];

RyanGibb avatar Jun 09 '25 11:06 RyanGibb

Thank you, I missed this one.

weriomat avatar Jun 09 '25 23:06 weriomat