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
|
2020-10-01 04:20:00 +00:00
|
|
|
, zlib
|
2021-08-06 21:34:58 +00:00
|
|
|
, zstd
|
2019-11-09 09:20:00 +00:00
|
|
|
, 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
|
2021-05-08 00:53:04 +00:00
|
|
|
, nghttp2
|
|
|
|
, libgit2
|
2021-07-17 15:36:31 +00:00
|
|
|
, withExtraFeatures ? true
|
2022-05-26 15:12:31 +00:00
|
|
|
, testers
|
|
|
|
, nushell
|
2019-11-09 09:20:00 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "nushell";
|
2022-07-29 15:17:47 +00:00
|
|
|
version = "0.66.2";
|
2019-11-09 09:20:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2020-01-07 17:58:06 +00:00
|
|
|
rev = version;
|
2022-07-29 15:17:47 +00:00
|
|
|
sha256 = "sha256-PaPj2hbObY4wXubN3Mvr0TlpI13Zgkey90qAgpB0qOo=";
|
2019-11-09 09:20:00 +00:00
|
|
|
};
|
|
|
|
|
2022-07-31 19:15:54 +00:00
|
|
|
cargoSha256 = "sha256-KRkPVemgK7RDWJi4TqHNqZLwpwUkx+K15u52Do+pqik=";
|
|
|
|
|
|
|
|
# enable pkg-config feature of zstd
|
|
|
|
cargoPatches = [ ./zstd-pkg-config.patch ];
|
2022-03-23 13:59:54 +00:00
|
|
|
|
2019-11-12 09:20:00 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ]
|
2022-07-29 15:17:47 +00:00
|
|
|
++ lib.optionals (withExtraFeatures && stdenv.isLinux) [ python3 ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ rustPlatform.bindgenHook ];
|
2019-11-09 09:20:00 +00:00
|
|
|
|
2021-08-06 21:34:58 +00:00
|
|
|
buildInputs = [ openssl zstd ]
|
2020-10-01 04:20:00 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ zlib libiconv Security ]
|
2021-07-17 15:36:31 +00:00
|
|
|
++ lib.optionals (withExtraFeatures && stdenv.isLinux) [ xorg.libX11 ]
|
|
|
|
++ lib.optionals (withExtraFeatures && stdenv.isDarwin) [ AppKit nghttp2 libgit2 ];
|
2019-11-12 09:20:00 +00:00
|
|
|
|
2021-11-16 00:48:32 +00:00
|
|
|
buildFeatures = lib.optional withExtraFeatures "extra";
|
2020-01-29 20:03:54 +00:00
|
|
|
|
2021-05-10 00:45:56 +00: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 06:27:18 +00:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
echo "Running cargo test"
|
2020-10-01 04:20:00 +00:00
|
|
|
HOME=$TMPDIR cargo test
|
2020-06-18 06:27:18 +00:00
|
|
|
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-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne johntitor marsam ];
|
2021-04-27 11:44:53 +00:00
|
|
|
mainProgram = "nu";
|
2019-11-09 09:20:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/nu";
|
2022-05-26 15:12:31 +00:00
|
|
|
tests.version = testers.testVersion {
|
|
|
|
package = nushell;
|
|
|
|
};
|
2019-11-09 09:20:00 +00:00
|
|
|
};
|
|
|
|
}
|