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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue