mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
79 lines
1.8 KiB
Nix
79 lines
1.8 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, openssl
|
|
, zlib
|
|
, zstd
|
|
, pkg-config
|
|
, python3
|
|
, xorg
|
|
, Libsystem
|
|
, AppKit
|
|
, Security
|
|
, nghttp2
|
|
, libgit2
|
|
# string interpolation dependends on a date that is erroring out
|
|
# this will be fixed in releases after 0.90.1
|
|
, doCheck ? false
|
|
, withDefaultFeatures ? true
|
|
, additionalFeatures ? (p: p)
|
|
, testers
|
|
, nushell
|
|
, nix-update-script
|
|
}:
|
|
|
|
let
|
|
version = "0.90.1";
|
|
in
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "nushell";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nushell";
|
|
repo = "nushell";
|
|
rev = version;
|
|
hash = "sha256-MODd2BT2g6g5H6/1EG5OjIoYm18yBSvYTR83RuYDMec=";
|
|
};
|
|
|
|
cargoHash = "sha256-35KPY5t4aozHIcukmeS00g6tzZA9ZsS/44u9vpZ3oGQ=";
|
|
|
|
nativeBuildInputs = [ pkg-config ]
|
|
++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ python3 ]
|
|
++ lib.optionals stdenv.isDarwin [ rustPlatform.bindgenHook ];
|
|
|
|
buildInputs = [ openssl zstd ]
|
|
++ lib.optionals stdenv.isDarwin [ zlib Libsystem Security ]
|
|
++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ xorg.libX11 ]
|
|
++ lib.optionals (withDefaultFeatures && stdenv.isDarwin) [ AppKit nghttp2 libgit2 ];
|
|
|
|
buildNoDefaultFeatures = !withDefaultFeatures;
|
|
buildFeatures = additionalFeatures [ ];
|
|
|
|
inherit doCheck;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
echo "Running cargo test"
|
|
HOME=$(mktemp -d) cargo test
|
|
runHook postCheck
|
|
'';
|
|
|
|
passthru = {
|
|
shellPath = "/bin/nu";
|
|
tests.version = testers.testVersion {
|
|
package = nushell;
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A modern shell written in Rust";
|
|
homepage = "https://www.nushell.sh/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Br1ght0ne johntitor marsam ];
|
|
mainProgram = "nu";
|
|
};
|
|
}
|