2019-11-09 09:20:00 +00:00
|
|
|
{ stdenv
|
2020-01-29 20:03:54 +00:00
|
|
|
, lib
|
2019-11-09 09:20:00 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, openssl
|
|
|
|
, pkg-config
|
2019-11-12 09:20:00 +00:00
|
|
|
, python3
|
|
|
|
, xorg
|
2019-11-09 09:20:00 +00:00
|
|
|
, libiconv
|
2019-11-12 09:20:00 +00:00
|
|
|
, AppKit
|
2019-11-09 09:20:00 +00:00
|
|
|
, Security
|
2019-12-19 14:26:35 +00:00
|
|
|
, withStableFeatures ? true
|
2019-11-09 09:20:00 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "nushell";
|
2020-08-14 22:17:20 +00:00
|
|
|
version = "0.18.1";
|
2019-11-09 09:20:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2020-01-07 17:58:06 +00:00
|
|
|
rev = version;
|
2020-08-14 22:17:20 +00:00
|
|
|
sha256 = "100r26dx57wdzdpf6lgsgw0py33k3nsx73pa1qjcipwv00a106sr";
|
2019-11-09 09:20:00 +00:00
|
|
|
};
|
|
|
|
|
2020-08-14 22:17:20 +00:00
|
|
|
cargoSha256 = "0ch79zsnqb5n9r7jq6figpmqp2cs2p9a3m7fg3sd04m797ki9chr";
|
2019-11-09 09:20:00 +00:00
|
|
|
|
2019-11-12 09:20:00 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ]
|
2020-01-29 20:03:54 +00:00
|
|
|
++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ];
|
2019-11-09 09:20:00 +00:00
|
|
|
|
2020-01-29 20:03:54 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ openssl ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ libiconv Security ]
|
|
|
|
++ lib.optionals (withStableFeatures && stdenv.isLinux) [ xorg.libX11 ]
|
|
|
|
++ lib.optionals (withStableFeatures && stdenv.isDarwin) [ AppKit ];
|
2019-11-12 09:20:00 +00:00
|
|
|
|
2020-01-29 20:03:54 +00:00
|
|
|
cargoBuildFlags = lib.optional withStableFeatures "--features stable";
|
|
|
|
|
2019-11-09 09:20:00 +00:00
|
|
|
preCheck = ''
|
|
|
|
export HOME=$TMPDIR
|
|
|
|
'';
|
|
|
|
|
2020-06-18 06:27:18 +00:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
echo "Running cargo test"
|
|
|
|
cargo test
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
2020-01-29 20:03:54 +00:00
|
|
|
meta = with lib; {
|
2019-11-09 09:20:00 +00:00
|
|
|
description = "A modern shell written in Rust";
|
|
|
|
homepage = "https://www.nushell.sh/";
|
|
|
|
license = licenses.mit;
|
2020-08-14 22:17:20 +00:00
|
|
|
maintainers = with maintainers; [ filalex77 johntitor marsam ];
|
2020-01-02 10:34:35 +00:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
|
2019-11-09 09:20:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/nu";
|
|
|
|
};
|
|
|
|
}
|