nixpkgs/pkgs/shells/nushell/default.nix

65 lines
1.5 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
2019-11-09 09:20:00 +00:00
, pkg-config
, python3
, xorg
2019-11-09 09:20:00 +00:00
, libiconv
, AppKit
2019-11-09 09:20:00 +00:00
, Security
2021-05-08 00:53:04 +00:00
, nghttp2
, libgit2
, withStableFeatures ? true
2019-11-09 09:20:00 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "nushell";
2021-06-27 10:46:51 +00:00
version = "0.33.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;
2021-06-27 10:46:51 +00:00
sha256 = "sha256-Asjm3IoAfzphITLQuNh6r/i/pjEM/A+wpCsAB83bu2U=";
2019-11-09 09:20:00 +00:00
};
2021-06-27 10:46:51 +00:00
cargoSha256 = "sha256-Ly59mdUzSI2pIPbckWn1WBz/o2zVzpAzaCDROLdjG7Y=";
2019-11-09 09:20:00 +00:00
nativeBuildInputs = [ pkg-config ]
2020-01-29 20:03:54 +00:00
++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ];
2019-11-09 09:20:00 +00:00
buildInputs = [ openssl ]
++ lib.optionals stdenv.isDarwin [ zlib libiconv Security ]
2020-01-29 20:03:54 +00:00
++ lib.optionals (withStableFeatures && stdenv.isLinux) [ xorg.libX11 ]
2021-05-08 00:53:04 +00:00
++ lib.optionals (withStableFeatures && stdenv.isDarwin) [ AppKit nghttp2 libgit2 ];
2020-01-29 20:03:54 +00:00
cargoBuildFlags = lib.optional withStableFeatures "--features stable";
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
doCheck = ! stdenv.isDarwin;
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";
};
}