about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-09 18:12:19 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-10 14:52:54 +0100
commitaa912075f36a224469463e1edd325ea8a6f2f4a4 (patch)
tree7e5272eed5a4a0365936eab8ed2856015cefea03
parent62f830fe6c59c01bd4b8e837ec0bb49b1ac54041 (diff)
home-assistant: use overridden dependencies in overrides
(cherry picked from commit 9755134150a5469ab6b32a086c2eff4bb89e1f72)
-rw-r--r--pkgs/servers/home-assistant/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 1c5f52588e460..4c11713038889 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -105,10 +105,10 @@ let
           rev = "refs/tags/${version}";
           hash = "sha256-iqlKfpnETLqQwy5sNcK2x/TgmuN2hCfYoHEFK2WWVXI=";
         };
-        nativeBuildInputs = with super; [
+        nativeBuildInputs = with self; [
           setuptools
         ];
-        propagatedBuildInputs = with super; [
+        propagatedBuildInputs = with self; [
           aenum
           aiohttp
           pydantic
@@ -151,11 +151,11 @@ let
           hash = "sha256-adkcUuPl0jdJjkBINCTW4Kmc16C/HzL+jaRZB/Qr09A=";
         };
 
-        nativeBuildInputs = with super; [
+        nativeBuildInputs = with self; [
           setuptools
         ];
 
-        propagatedBuildInputs = with super; [
+        propagatedBuildInputs = with self; [
           requests
         ];