Merge pull request #268511 from otavio/fix-darwin-rio

rio: fix Darwin build and move cmake to Linux nativeBuildInputs

authored by Mario Rodas and committed by GitHub d888e30e e2bd1637

+2 -2
+2 -2
pkgs/applications/terminal-emulators/rio/default.nix
··· 30 let 31 rlinkLibs = if stdenv.isDarwin then [ 32 darwin.libobjc 33 - darwin.apple_sdk.frameworks.AppKit 34 ] else [ 35 (lib.getLib gcc-unwrapped) 36 fontconfig ··· 62 63 nativeBuildInputs = [ 64 ncurses 65 - cmake 66 ] ++ lib.optionals stdenv.isLinux [ 67 pkg-config 68 autoPatchelfHook 69 ];
··· 30 let 31 rlinkLibs = if stdenv.isDarwin then [ 32 darwin.libobjc 33 + darwin.apple_sdk_11_0.frameworks.AppKit 34 ] else [ 35 (lib.getLib gcc-unwrapped) 36 fontconfig ··· 62 63 nativeBuildInputs = [ 64 ncurses 65 ] ++ lib.optionals stdenv.isLinux [ 66 + cmake 67 pkg-config 68 autoPatchelfHook 69 ];