nixpkgs/pkgs/shells/nushell/default.nix

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

95 lines
2.6 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
, runCommand
2019-11-09 09:20:00 +00:00
, rustPlatform
, openssl
, zlib
2021-08-06 21:34:58 +00:00
, zstd
2019-11-09 09:20:00 +00:00
, pkg-config
, python3
, xorg
2019-11-09 09:20:00 +00:00
, libiconv
, AppKit
, Foundation
2019-11-09 09:20:00 +00:00
, Security
# darwin.apple_sdk.sdk
, sdk
2021-05-08 00:53:04 +00:00
, nghttp2
, libgit2
, 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-10-26 07:09:10 +00:00
version = "0.70.0";
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-10-26 07:09:10 +00:00
sha256 = "sha256-krsycaqT+MmpWEVNVqQQO2zrO9ymZIskgGgrzEMFP1s=";
2019-11-09 09:20:00 +00:00
};
2022-10-26 07:09:10 +00:00
cargoSha256 = "sha256-Etw8F5alUNMlH0cvREPk2LdBQKl70dj6JklFZWInvow=";
# enable pkg-config feature of zstd
cargoPatches = [ ./zstd-pkg-config.patch ];
nativeBuildInputs = [ pkg-config ]
++ 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 ]
++ lib.optionals stdenv.isDarwin [ zlib libiconv Security ]
++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [
Foundation
(
# Pull a header that contains a definition of proc_pid_rusage().
# (We pick just that one because using the other headers from `sdk` is not
# compatible with our C++ standard library. This header is already in
# the standard library on aarch64)
# See also:
# https://github.com/shanesveller/nixpkgs/tree/90ed23b1b23c8ee67928937bdec7ddcd1a0050f5/pkgs/development/libraries/webkitgtk/default.nix
# https://github.com/shanesveller/nixpkgs/blob/90ed23b1b23c8ee67928937bdec7ddcd1a0050f5/pkgs/tools/system/btop/default.nix#L32-L38
runCommand "${pname}_headers" { } ''
install -Dm444 "${lib.getDev sdk}"/include/libproc.h "$out"/include/libproc.h
''
)
] ++ lib.optionals (withExtraFeatures && stdenv.isLinux) [ xorg.libX11 ]
++ lib.optionals (withExtraFeatures && stdenv.isDarwin) [ AppKit nghttp2 libgit2 ];
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
2022-10-14 07:22:18 +00:00
# doCheck = ! stdenv.isDarwin;
# TODO tests are not guaranteed while package is in beta
doCheck = false;
2021-05-10 00:45:56 +00:00
checkPhase = ''
runHook preCheck
echo "Running cargo test"
HOME=$TMPDIR cargo test
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;
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
};
}