{ stdenv , lib , fetchFromGitHub , rustPlatform , openssl , zlib , pkg-config , python3 , xorg , libiconv , AppKit , Security , withStableFeatures ? true }: rustPlatform.buildRustPackage rec { pname = "nushell"; version = "0.22.0"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; sha256 = "1nj8cjj5db5r4wnxbcsd5z9n5kqf2p1j54l5z0m650370z41df1f"; }; cargoSha256 = "0sh6z8dclla3lrjzwfjb7avsbkagaq9d9q3d8ll8y0mahv1a135w"; nativeBuildInputs = [ pkg-config ] ++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ]; buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ zlib libiconv Security ] ++ lib.optionals (withStableFeatures && stdenv.isLinux) [ xorg.libX11 ] ++ lib.optionals (withStableFeatures && stdenv.isDarwin) [ AppKit ]; cargoBuildFlags = lib.optional withStableFeatures "--features stable"; checkPhase = '' runHook preCheck echo "Running cargo test" HOME=$TMPDIR cargo test runHook postCheck ''; meta = with lib; { description = "A modern shell written in Rust"; homepage = "https://www.nushell.sh/"; license = licenses.mit; maintainers = with maintainers; [ filalex77 johntitor marsam ]; platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]; }; passthru = { shellPath = "/bin/nu"; }; }