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
|
2023-02-24 14:54:44 +01:00
|
|
|
, doCheck ? true
|
|
|
|
, 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
|
2023-09-20 18:52:59 +02:00
|
|
|
version = "0.85.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;
|
2023-09-20 18:52:59 +02:00
|
|
|
hash = "sha256-/c3JTgIT+T41D0S7irQ0jq2MDzmx3os4pYpVr10cL3E=";
|
2019-11-09 10:20:00 +01:00
|
|
|
};
|
|
|
|
|
2023-09-20 18:52:59 +02:00
|
|
|
cargoHash = "sha256-lBipwX72j0Af3PCat18s9NIjJiKZFZTcU9Utwt+eQzI=";
|
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;
|
|
|
|
maintainers = with maintainers; [ Br1ght0ne johntitor marsam ];
|
|
|
|
mainProgram = "nu";
|
|
|
|
};
|
|
|
|
}
|