{ stdenv , lib , fetchFromGitHub , rustPlatform , openssl , zlib , pkg-config , python3 , xorg , libiconv , AppKit , Security , withStableFeatures ? true }: rustPlatform.buildRustPackage rec { pname = "nushell"; version = "0.20.0"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; sha256 = "038c61605b92a97h84hlifwks0q6miv6rn7spr5h6h2nwvaqlyk6"; }; cargoSha256 = "1vr0pqcv9gm4cwlkd06672jzz9rbm77c6j5r05waypc1lv4ln2cg"; 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"; # Remove after https://github.com/NixOS/nixpkgs/pull/97000 lands into master preConfigure = stdenv.lib.optionalString stdenv.isDarwin '' unset SDKROOT ''; 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"; }; }