nixpkgs/pkgs/shells/nushell/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.8 KiB
Nix
Raw Normal View History

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
, zlib
2021-08-06 21:34:58 +00:00
, zstd
2019-11-09 09:20:00 +00:00
, pkg-config
, python3
, xorg
2023-02-16 16:50:14 +00:00
, Libsystem
, AppKit
2019-11-09 09:20:00 +00:00
, Security
2021-05-08 00:53:04 +00:00
, nghttp2
, libgit2
2024-02-28 10:36:32 +00:00
# string interpolation dependends on a date that is erroring out
# this will be fixed in releases after 0.90.1
, doCheck ? false
, withDefaultFeatures ? true
, additionalFeatures ? (p: p)
2022-05-26 15:12:31 +00:00
, testers
, nushell
2022-12-24 01:44:23 +00:00
, nix-update-script
2019-11-09 09:20:00 +00:00
}:
let
2024-03-05 23:11:10 +00:00
version = "0.91.0";
in
rustPlatform.buildRustPackage {
pname = "nushell";
inherit version;
2019-11-09 09:20:00 +00:00
src = fetchFromGitHub {
owner = "nushell";
repo = "nushell";
2020-01-07 17:58:06 +00:00
rev = version;
2024-03-05 23:11:10 +00:00
hash = "sha256-X3D+JRvnk6HMKWJMTNR16Fmhu+gYd8Ip+7PZQoLIoEU=";
2019-11-09 09:20:00 +00:00
};
2024-03-05 23:11:10 +00:00
cargoHash = "sha256-Xj4P/qd4GvmhWGwGaPvY23cQwdjdf6cSb1xyRZLN0tQ=";
nativeBuildInputs = [ pkg-config ]
++ lib.optionals (withDefaultFeatures && 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 ]
++ lib.optionals stdenv.isDarwin [ zlib Libsystem Security ]
++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ xorg.libX11 ]
++ lib.optionals (withDefaultFeatures && stdenv.isDarwin) [ AppKit nghttp2 libgit2 ];
buildNoDefaultFeatures = !withDefaultFeatures;
buildFeatures = additionalFeatures [ ];
2020-01-29 20:03:54 +00:00
inherit doCheck;
2021-05-10 00:45:56 +00:00
checkPhase = ''
runHook preCheck
echo "Running cargo test"
HOME=$(mktemp -d) cargo test
runHook postCheck
'';
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;
};
updateScript = nix-update-script { };
2019-11-09 09:20:00 +00: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";
};
}