Commit b3b3b216 authored by Charlotte 🦝 Deleńkec's avatar Charlotte 🦝 Deleńkec Committed by Weijia Wang
Browse files

zenny-cli: throw on unsupported system

parent 600f6b67
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -24,7 +24,9 @@ let
  go-turbo = stdenv.mkDerivation {
    pname = "go-turbo";
    version = go-turbo-version;
    src = go-turbo-srcs.${stdenv.hostPlatform.system};
    src =
      go-turbo-srcs.${stdenv.hostPlatform.system}
        or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
    nativeBuildInputs = [ autoPatchelfHook ];
    dontBuild = true;
    installPhase = ''