aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-12-07 00:05:32 -0800
committerMark Nipper <nipsy@bitgnome.net>2024-12-07 00:05:32 -0800
commit9e9b52b56dda5ec67f26ec74f0442e0ba86ef3b2 (patch)
tree8e391a6cd6f2e535f46f3c2abe9eb21329a0b232
parentcf1c8d9369c4cdedff2afd1296eac38e4b1b833f (diff)
downloadnix-9e9b52b56dda5ec67f26ec74f0442e0ba86ef3b2.tar
nix-9e9b52b56dda5ec67f26ec74f0442e0ba86ef3b2.tar.gz
nix-9e9b52b56dda5ec67f26ec74f0442e0ba86ef3b2.tar.bz2
nix-9e9b52b56dda5ec67f26ec74f0442e0ba86ef3b2.tar.lz
nix-9e9b52b56dda5ec67f26ec74f0442e0ba86ef3b2.tar.xz
nix-9e9b52b56dda5ec67f26ec74f0442e0ba86ef3b2.tar.zst
nix-9e9b52b56dda5ec67f26ec74f0442e0ba86ef3b2.zip
Add pysocks dependency to openstackclient-full
-rw-r--r--hosts/richese/default.nix4
-rw-r--r--overlays/default.nix3
2 files changed, 4 insertions, 3 deletions
diff --git a/hosts/richese/default.nix b/hosts/richese/default.nix
index 7f41861..d612b07 100644
--- a/hosts/richese/default.nix
+++ b/hosts/richese/default.nix
@@ -9,9 +9,7 @@
environment.systemPackages = with pkgs; [
git-review
- (openstackclient-full.overrideAttrs (oldAttrs: {
- dependencies = oldAttrs.dependencies ++ [ pysocks ];
- }))
+ openstackclient-full
];
imports = [
diff --git a/overlays/default.nix b/overlays/default.nix
index aaab968..03592ae 100644
--- a/overlays/default.nix
+++ b/overlays/default.nix
@@ -20,6 +20,9 @@
# example = prev.example.overrideAttrs (oldAttrs: rec {
# ...
# });
+ openstackclient-full = prev.openstackclient-full.overrideAttrs (oldAttrs: rec {
+ dependencies = oldAttrs.dependencies ++ [ pysocks ];
+ });
};
"67e692392-packages" = final: _prev: {