nixpkgs/pkgs/shells/nushell/default.nix

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

78 lines
1.7 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
, doCheck ? true
, 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-01-09 23:26:16 +00:00
version = "0.89.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-01-09 23:26:16 +00:00
hash = "sha256-sBS24FOdEhb+MPu33lpFxLd2/r2AvLUXka+7W3lUIvo=";
2019-11-09 09:20:00 +00:00
};
2024-01-09 23:26:16 +00:00
cargoHash = "sha256-B1Sd4dLacIIVNQDnBFw74nX+LaQnzYwCKXv3oJIbu4M=";
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";
};
}