From 5e1bf24bc97568fbab49156b1b8396c4a61d0b35 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Wed, 28 Feb 2024 23:57:23 +0100 Subject: [PATCH] nixops_unstable_*: Expose internals politely --- pkgs/applications/networking/cluster/nixops/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/networking/cluster/nixops/default.nix b/pkgs/applications/networking/cluster/nixops/default.nix index 1e086bb5c571..75902de1b9f6 100644 --- a/pkgs/applications/networking/cluster/nixops/default.nix +++ b/pkgs/applications/networking/cluster/nixops/default.nix @@ -90,6 +90,9 @@ let addAvailablePlugins = newPlugins: this.extend (finalThis: oldThis: { plugins = lib.composeExtensions oldThis.plugins newPlugins; }); + + # For those who need or dare. + internals = this; }; package = lib.lazyDerivation { outputs = [ "out" "dist" ]; derivation = this.rawPackage; } // this.extraPackageAttrs;