tio: remove unused cmake from nativeBuildInputs

https://github.com/jtojnar/nixpkgs-hammering/blob/main/explanations/meson-cmake.md

authored by Bobby Rong and committed by GitHub a18ecf7b 7f38631b

+2 -2
+2 -2
pkgs/tools/misc/tio/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, meson, ninja, cmake, pkg-config, inih, bash-completion }: 1 + { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, inih, bash-completion }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "tio"; ··· 11 11 hash = "sha256-BjA9Zl6JcgDxTj4KPiWItSq9XuX9FJkpZnhdMBGZQpQ="; 12 12 }; 13 13 14 - nativeBuildInputs = [ meson ninja cmake pkg-config inih bash-completion ]; 14 + nativeBuildInputs = [ meson ninja pkg-config inih bash-completion ]; 15 15 16 16 meta = with lib; { 17 17 description = "Serial console TTY";