Files
2025-12-30 23:32:57 +00:00

12 lines
237 B
Nix

{
callPackage,
stdenv,
}:
if stdenv.hostPlatform.isDarwin then
callPackage ./darwin.nix { }
else if stdenv.hostPlatform.isLinux then
callPackage ./linux.nix { }
else
throw "Unsupported platform: ${stdenv.hostPlatform.system}"