cfcd52ff70
GitOrigin-RevId: 70c5b268e10025c70823767f4fb49e240b40151d
14 lines
376 B
Nix
14 lines
376 B
Nix
{ lib }:
|
|
|
|
{
|
|
assertPlatform = module: pkgs: platforms: {
|
|
assertion = lib.elem pkgs.stdenv.hostPlatform.system platforms;
|
|
message = let
|
|
platformsStr = lib.concatStringsSep "\n"
|
|
(map (p: " - ${p}") (lib.sort (a: b: a < b) platforms));
|
|
in ''
|
|
The module ${module} does not support your platform. It only supports
|
|
|
|
${platformsStr}'';
|
|
};
|
|
}
|