Use callPackage

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-08-17 12:46:21 +03:00
parent afc80d8f42
commit f4ab38acbd
4 changed files with 17 additions and 5 deletions

View File

@@ -1,5 +1,8 @@
{ pkgs, ... }: { pkgs, ... }:
let
callPackage = pkgs.lib.callPackageWith { inherit pkgs; };
in
{ {
fetchers = import ./fetchers { inherit pkgs; }; fetchers = callPackage ./fetchers { };
runtime = import ./runtime { inherit pkgs; }; runtime = callPackage ./runtime { };
} }

View File

@@ -1,4 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
let
callPackage = pkgs.lib.callPackageWith { inherit pkgs; };
in
{ {
sshKnownHosts = import ./sshKnownHosts { inherit pkgs; }; sshKnownHosts = callPackage ./sshKnownHosts { };
} }

View File

@@ -1,4 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
let
callPackage = pkgs.lib.callPackageWith { inherit pkgs; };
in
{ {
merge = import ./merge { inherit pkgs; }; merge = callPackage ./merge { };
} }

View File

@@ -1,4 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
let
callPackage = pkgs.lib.callPackageWith { inherit pkgs; };
in
{ {
keyValue = import ./keyValue { inherit pkgs; }; keyValue = callPackage ./keyValue { };
} }