mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, openssl
|
|
, pkg-config
|
|
, python3
|
|
, xorg
|
|
, libiconv
|
|
, AppKit
|
|
, Security
|
|
, withStableFeatures ? true
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nushell";
|
|
version = "0.15.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1s08shhg826hbpcjzlhwj0r5qqckz8rv2xjg22rz1qvsjyhkmv7r";
|
|
};
|
|
|
|
cargoSha256 = "0lz7119znpxyaj9ac1skfbx0s0dkh3hwk00g0zjn3r6k8fh9gj4d";
|
|
|
|
nativeBuildInputs = [ pkg-config ]
|
|
++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ];
|
|
|
|
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 ];
|
|
|
|
cargoBuildFlags = lib.optional withStableFeatures "--features stable";
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
echo "Running cargo test"
|
|
cargo test
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A modern shell written in Rust";
|
|
homepage = "https://www.nushell.sh/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ filalex77 marsam ];
|
|
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
|
|
};
|
|
|
|
passthru = {
|
|
shellPath = "/bin/nu";
|
|
};
|
|
}
|