mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
breitbandmessung: throw later for unsupported systems
This will provide at least the `name` and `meta` attributes when evaluating on such a system. `meta.platforms` and therefore `meta.broken` can then be used to determine if the package can be evaluated further.
This commit is contained in:
parent
9ec1d80c55
commit
e533f9d3b2
@ -135,7 +135,7 @@ let
|
||||
};
|
||||
|
||||
aarch64-darwin = x86_64-darwin;
|
||||
}.${system} or (throw "Unsupported system: ${system}");
|
||||
}.${system} or { src = throw "Unsupported system: ${system}"; };
|
||||
in
|
||||
stdenv.mkDerivation ({
|
||||
pname = "breitbandmessung";
|
||||
|
Loading…
Reference in New Issue
Block a user