2023-10-09 19:29:22 +00:00
|
|
|
{ stdenv, callPackage, ... }@args:
|
2023-07-15 17:15:38 +00:00
|
|
|
let
|
2023-10-09 19:29:22 +00:00
|
|
|
extraArgs = removeAttrs args [ "callPackage" ];
|
|
|
|
in
|
2024-09-26 11:04:55 +00:00
|
|
|
if stdenv.hostPlatform.isDarwin then
|
2023-10-09 19:29:22 +00:00
|
|
|
callPackage ./darwin.nix (extraArgs // { })
|
|
|
|
else
|
|
|
|
callPackage ./linux.nix (extraArgs // { })
|