about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/nixops
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2024-02-28 16:31:40 +0100
committerRobert Hensing <robert@roberthensing.nl>2024-03-06 22:47:23 +0100
commitbc2a13998c7576ae1ccb00ad98f765b6f828e50c (patch)
treefbb6180a3b728de5d028fe544369b363442071d8 /pkgs/applications/networking/cluster/nixops
parent8d9f5ca31a0315c99584dc3d0d642354ca1c67aa (diff)
nixops_unstable_*: Internal rename
Diffstat (limited to 'pkgs/applications/networking/cluster/nixops')
-rw-r--r--pkgs/applications/networking/cluster/nixops/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/nixops/default.nix b/pkgs/applications/networking/cluster/nixops/default.nix
index abaa62a8bfdbf..92a38618e6626 100644
--- a/pkgs/applications/networking/cluster/nixops/default.nix
+++ b/pkgs/applications/networking/cluster/nixops/default.nix
@@ -30,9 +30,9 @@ let
   # selector is a function mapping pythonPackages to a list of plugins
   # e.g. nixops_unstable.withPlugins (ps: with ps; [ nixops-aws ])
   withPlugins' = { availablePlugins }: selector: let
-   selected = selector availablePlugins;
+   selectedPlugins = selector availablePlugins;
    r = python.pkgs.toPythonApplication (python.pkgs.nixops.overridePythonAttrs (old: {
-    propagatedBuildInputs = old.propagatedBuildInputs ++ selected;
+    propagatedBuildInputs = old.propagatedBuildInputs ++ selectedPlugins;
 
     # Propagating dependencies leaks them through $PYTHONPATH which causes issues
     # when used in nix-shell.