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
|
2020-10-01 06:20:00 +02:00
|
|
|
, zlib
|
2019-11-09 10:20:00 +01:00
|
|
|
, pkg-config
|
2019-11-12 10:20:00 +01:00
|
|
|
, python3
|
|
|
|
, xorg
|
2019-11-09 10:20:00 +01:00
|
|
|
, libiconv
|
2019-11-12 10:20:00 +01:00
|
|
|
, AppKit
|
2019-11-09 10:20:00 +01:00
|
|
|
, Security
|
2021-05-08 02:53:04 +02:00
|
|
|
, nghttp2
|
|
|
|
, libgit2
|
2019-12-19 15:26:35 +01:00
|
|
|
, withStableFeatures ? true
|
2019-11-09 10:20:00 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "nushell";
|
2021-06-27 12:46:51 +02:00
|
|
|
version = "0.33.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-06-27 12:46:51 +02:00
|
|
|
sha256 = "sha256-Asjm3IoAfzphITLQuNh6r/i/pjEM/A+wpCsAB83bu2U=";
|
2019-11-09 10:20:00 +01:00
|
|
|
};
|
|
|
|
|
2021-06-27 12:46:51 +02:00
|
|
|
cargoSha256 = "sha256-Ly59mdUzSI2pIPbckWn1WBz/o2zVzpAzaCDROLdjG7Y=";
|
2019-11-09 10:20:00 +01:00
|
|
|
|
2019-11-12 10:20:00 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ]
|
2020-01-29 21:03:54 +01:00
|
|
|
++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ];
|
2019-11-09 10:20:00 +01:00
|
|
|
|
2020-10-01 06:20:00 +02:00
|
|
|
buildInputs = [ openssl ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ zlib libiconv Security ]
|
2020-01-29 21:03:54 +01:00
|
|
|
++ lib.optionals (withStableFeatures && stdenv.isLinux) [ xorg.libX11 ]
|
2021-05-08 02:53:04 +02:00
|
|
|
++ lib.optionals (withStableFeatures && stdenv.isDarwin) [ AppKit nghttp2 libgit2 ];
|
2019-11-12 10:20:00 +01:00
|
|
|
|
2020-01-29 21:03:54 +01:00
|
|
|
cargoBuildFlags = lib.optional withStableFeatures "--features stable";
|
|
|
|
|
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;
|
|
|
|
|
2020-06-18 08:27:18 +02:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
echo "Running cargo test"
|
2020-10-01 06:20:00 +02:00
|
|
|
HOME=$TMPDIR cargo test
|
2020-06-18 08:27:18 +02:00
|
|
|
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;
|
2020-11-17 12:02:06 +01:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|