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
|
2021-08-06 23:34:58 +02:00
|
|
|
, zstd
|
2019-11-09 10:20:00 +01:00
|
|
|
, pkg-config
|
2019-11-12 10:20:00 +01:00
|
|
|
, python3
|
|
|
|
, xorg
|
2023-02-16 17:50:14 +01:00
|
|
|
, Libsystem
|
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
|
2024-02-28 11:36:32 +01:00
|
|
|
# string interpolation dependends on a date that is erroring out
|
|
|
|
# this will be fixed in releases after 0.90.1
|
|
|
|
, doCheck ? false
|
2023-02-24 14:54:44 +01:00
|
|
|
, withDefaultFeatures ? true
|
|
|
|
, additionalFeatures ? (p: p)
|
2022-05-26 17:12:31 +02:00
|
|
|
, testers
|
|
|
|
, nushell
|
2022-12-24 02:44:23 +01:00
|
|
|
, nix-update-script
|
2019-11-09 10:20:00 +01:00
|
|
|
}:
|
|
|
|
|
2023-07-02 18:04:48 +02:00
|
|
|
let
|
2024-03-06 00:11:10 +01:00
|
|
|
version = "0.91.0";
|
2023-07-02 18:04:48 +02:00
|
|
|
in
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage {
|
|
|
|
pname = "nushell";
|
|
|
|
inherit version;
|
2019-11-09 10:20:00 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-07-02 18:04:48 +02:00
|
|
|
owner = "nushell";
|
|
|
|
repo = "nushell";
|
2020-01-07 18:58:06 +01:00
|
|
|
rev = version;
|
2024-03-06 00:11:10 +01:00
|
|
|
hash = "sha256-X3D+JRvnk6HMKWJMTNR16Fmhu+gYd8Ip+7PZQoLIoEU=";
|
2019-11-09 10:20:00 +01:00
|
|
|
};
|
|
|
|
|
2024-03-06 00:11:10 +01:00
|
|
|
cargoHash = "sha256-Xj4P/qd4GvmhWGwGaPvY23cQwdjdf6cSb1xyRZLN0tQ=";
|
2022-03-23 14:59:54 +01:00
|
|
|
|
2019-11-12 10:20:00 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ]
|
2023-02-24 14:54:44 +01:00
|
|
|
++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ python3 ]
|
2022-07-29 17:17:47 +02:00
|
|
|
++ lib.optionals stdenv.isDarwin [ rustPlatform.bindgenHook ];
|
2019-11-09 10:20:00 +01:00
|
|
|
|
2021-08-06 23:34:58 +02:00
|
|
|
buildInputs = [ openssl zstd ]
|
2023-07-02 18:04:48 +02:00
|
|
|
++ lib.optionals stdenv.isDarwin [ zlib Libsystem Security ]
|
2023-02-24 14:54:44 +01:00
|
|
|
++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ xorg.libX11 ]
|
|
|
|
++ lib.optionals (withDefaultFeatures && stdenv.isDarwin) [ AppKit nghttp2 libgit2 ];
|
2019-11-12 10:20:00 +01:00
|
|
|
|
2023-07-02 18:04:48 +02:00
|
|
|
buildNoDefaultFeatures = !withDefaultFeatures;
|
|
|
|
buildFeatures = additionalFeatures [ ];
|
2020-01-29 21:03:54 +01:00
|
|
|
|
2023-07-02 18:04:48 +02:00
|
|
|
inherit doCheck;
|
2021-05-10 02:45:56 +02:00
|
|
|
|
2020-06-18 08:27:18 +02:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
echo "Running cargo test"
|
2023-07-02 18:04:48 +02:00
|
|
|
HOME=$(mktemp -d) cargo test
|
2020-06-18 08:27:18 +02:00
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
2019-11-09 10:20:00 +01:00
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/nu";
|
2022-05-26 17:12:31 +02:00
|
|
|
tests.version = testers.testVersion {
|
|
|
|
package = nushell;
|
|
|
|
};
|
2022-12-25 23:11:14 +01:00
|
|
|
updateScript = nix-update-script { };
|
2019-11-09 10:20:00 +01:00
|
|
|
};
|
2023-07-02 18:04:48 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A modern shell written in Rust";
|
|
|
|
homepage = "https://www.nushell.sh/";
|
|
|
|
license = licenses.mit;
|
2024-03-11 22:37:56 +01:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne johntitor marsam joaquintrinanes ];
|
2023-07-02 18:04:48 +02:00
|
|
|
mainProgram = "nu";
|
|
|
|
};
|
|
|
|
}
|