2019-11-09 10:20:00 +01:00
|
|
|
{ stdenv
|
2020-01-29 21:03:54 +01:00
|
|
|
, lib
|
2019-11-09 10:20:00 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, openssl
|
|
|
|
, pkg-config
|
2019-11-12 10:20:00 +01:00
|
|
|
, python3
|
|
|
|
, xorg
|
2019-11-09 10:20:00 +01:00
|
|
|
, libiconv
|
2019-11-12 10:20:00 +01:00
|
|
|
, AppKit
|
2019-11-09 10:20:00 +01:00
|
|
|
, Security
|
2019-12-19 15:26:35 +01:00
|
|
|
, withStableFeatures ? true
|
2019-11-09 10:20:00 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "nushell";
|
2020-06-11 12:50:37 +02:00
|
|
|
version = "0.15.0";
|
2019-11-09 10:20:00 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2020-01-07 18:58:06 +01:00
|
|
|
rev = version;
|
2020-06-11 12:50:37 +02:00
|
|
|
sha256 = "1s08shhg826hbpcjzlhwj0r5qqckz8rv2xjg22rz1qvsjyhkmv7r";
|
2019-11-09 10:20:00 +01:00
|
|
|
};
|
|
|
|
|
2020-06-11 12:50:37 +02:00
|
|
|
cargoSha256 = "0lz7119znpxyaj9ac1skfbx0s0dkh3hwk00g0zjn3r6k8fh9gj4d";
|
2019-11-09 10:20:00 +01:00
|
|
|
|
2019-11-12 10:20:00 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ]
|
2020-01-29 21:03:54 +01:00
|
|
|
++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ];
|
2019-11-09 10:20:00 +01:00
|
|
|
|
2020-01-29 21:03:54 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ openssl ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ libiconv Security ]
|
|
|
|
++ lib.optionals (withStableFeatures && stdenv.isLinux) [ xorg.libX11 ]
|
|
|
|
++ lib.optionals (withStableFeatures && stdenv.isDarwin) [ AppKit ];
|
2019-11-12 10:20:00 +01:00
|
|
|
|
2020-01-29 21:03:54 +01:00
|
|
|
cargoBuildFlags = lib.optional withStableFeatures "--features stable";
|
|
|
|
|
2019-11-09 10:20:00 +01:00
|
|
|
preCheck = ''
|
|
|
|
export HOME=$TMPDIR
|
|
|
|
'';
|
|
|
|
|
2020-01-29 21:03:54 +01:00
|
|
|
meta = with lib; {
|
2019-11-09 10:20:00 +01:00
|
|
|
description = "A modern shell written in Rust";
|
|
|
|
homepage = "https://www.nushell.sh/";
|
|
|
|
license = licenses.mit;
|
2019-11-27 07:49:18 +01:00
|
|
|
maintainers = with maintainers; [ filalex77 marsam ];
|
2020-01-02 11:34:35 +01:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
|
2019-11-09 10:20:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/nu";
|
|
|
|
};
|
|
|
|
}
|