nixpkgs/pkgs/shells/nushell/default.nix

79 lines
2.2 KiB
Nix
Raw Normal View History

2019-11-09 10:20:00 +01:00
{ stdenv
2020-01-29 21:03:54 +01:00
, lib
2019-11-09 10:20:00 +01:00
, fetchFromGitHub
, rustPlatform
, openssl
, zlib
2021-08-06 23:34:58 +02:00
, zstd
2019-11-09 10:20:00 +01:00
, pkg-config
, python3
, xorg
2019-11-09 10:20:00 +01:00
, libiconv
, AppKit
2019-11-09 10:20:00 +01:00
, Security
2021-05-08 02:53:04 +02:00
, nghttp2
, libgit2
, withExtraFeatures ? true
2019-11-09 10:20:00 +01:00
}:
rustPlatform.buildRustPackage rec {
pname = "nushell";
2021-11-03 17:55:50 +01:00
version = "0.39.0";
2019-11-09 10:20:00 +01:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2020-01-07 18:58:06 +01:00
rev = version;
2021-11-03 17:55:50 +01:00
sha256 = "sha256-eN1tTKNuZMU3qObHaqq70bdkmZeAD6LNAQau9JGSXpE=";
2019-11-09 10:20:00 +01:00
};
2021-11-03 17:55:50 +01:00
cargoSha256 = "sha256-6TZz8b8fALPTDRxzp+7ZWCHjOwVtqRjdSO6aEwZcMnc=";
2019-11-09 10:20:00 +01:00
nativeBuildInputs = [ pkg-config ]
++ lib.optionals (withExtraFeatures && stdenv.isLinux) [ python3 ];
2019-11-09 10:20:00 +01:00
2021-08-06 23:34:58 +02:00
buildInputs = [ openssl zstd ]
++ lib.optionals stdenv.isDarwin [ zlib libiconv Security ]
++ lib.optionals (withExtraFeatures && stdenv.isLinux) [ xorg.libX11 ]
++ lib.optionals (withExtraFeatures && stdenv.isDarwin) [ AppKit nghttp2 libgit2 ];
cargoBuildFlags = lib.optional withExtraFeatures "--features=extra";
2020-01-29 21:03:54 +01:00
2021-08-06 23:34:58 +02:00
# Since 0.34, nu has an indirect dependency on `zstd-sys` (via `polars` and
# `parquet`, for dataframe support), which by default has an impure build
# (git submodule for the `zstd` C library). The `pkg-config` feature flag
# fixes this, but it's hard to invoke this in the right place, because of
# the indirect dependencies. So add a direct dependency on `zstd-sys` here
# at the top level, along with this feature flag, to ensure that when
# `zstd-sys` is transitively invoked, it triggers a pure build using the
# system `zstd` library provided above.
#
# (If this patch needs updating, in a nushell repo add the zstd-sys line to
# Cargo.toml, then `cargo update --package zstd-sys` to update Cargo.lock.)
cargoPatches = [ ./use-system-zstd-lib.diff ];
2021-05-10 02:45:56 +02:00
# TODO investigate why tests are broken on darwin
# failures show that tests try to write to paths
# outside of TMPDIR
doCheck = ! stdenv.isDarwin;
checkPhase = ''
runHook preCheck
echo "Running cargo test"
HOME=$TMPDIR cargo test
runHook postCheck
'';
2020-01-29 21:03:54 +01:00
meta = with lib; {
2019-11-09 10:20:00 +01:00
description = "A modern shell written in Rust";
homepage = "https://www.nushell.sh/";
license = licenses.mit;
maintainers = with maintainers; [ Br1ght0ne johntitor marsam ];
2021-04-27 13:44:53 +02:00
mainProgram = "nu";
2019-11-09 10:20:00 +01:00
};
passthru = {
shellPath = "/bin/nu";
};
}