1{ 2 pkgs ? import ../../.. { }, 3}: 4let 5 inherit (pkgs) lib stdenv mkShell; 6in 7mkShell { 8 packages = 9 with pkgs; 10 [ 11 rustc 12 cargo 13 clippy 14 rustfmt 15 ] 16 ++ lib.optional stdenv.hostPlatform.isDarwin pkgs.libiconv; 17}