nixpkgs/pkgs/shells/nushell/default.nix

58 lines
1.3 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
, withStableFeatures ? true
2019-11-09 09:20:00 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "nushell";
version = "0.22.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;
sha256 = "1nj8cjj5db5r4wnxbcsd5z9n5kqf2p1j54l5z0m650370z41df1f";
2019-11-09 09:20:00 +00:00
};
cargoSha256 = "0sh6z8dclla3lrjzwfjb7avsbkagaq9d9q3d8ll8y0mahv1a135w";
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 ]
++ lib.optionals (withStableFeatures && stdenv.isDarwin) [ AppKit ];
2020-01-29 20:03:54 +00:00
cargoBuildFlags = lib.optional withStableFeatures "--features stable";
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;
2020-08-14 22:17:20 +00:00
maintainers = with maintainers; [ filalex77 johntitor marsam ];
2020-09-05 21:05:52 +00:00
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ];
2019-11-09 09:20:00 +00:00
};
passthru = {
shellPath = "/bin/nu";
};
}