nixpkgs/pkgs/shells/nushell/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
1.7 KiB
Nix
Raw Normal View History

2019-11-09 12:20:00 +03:00
{ stdenv
2020-01-29 23:03:54 +03:00
, lib
2019-11-09 12:20:00 +03:00
, fetchFromGitHub
, rustPlatform
, openssl
, zlib
2021-08-07 00:34:58 +03:00
, zstd
2019-11-09 12:20:00 +03:00
, pkg-config
, python3
, xorg
2023-02-16 19:50:14 +03:00
, Libsystem
, AppKit
2019-11-09 12:20:00 +03:00
, Security
2021-05-08 03:53:04 +03:00
, nghttp2
, libgit2
, doCheck ? true
, withDefaultFeatures ? true
, additionalFeatures ? (p: p)
2022-05-26 18:12:31 +03:00
, testers
, nushell
2022-12-24 04:44:23 +03:00
, nix-update-script
2019-11-09 12:20:00 +03:00
}:
let
version = "0.86.0";
in
rustPlatform.buildRustPackage {
pname = "nushell";
inherit version;
2019-11-09 12:20:00 +03:00
src = fetchFromGitHub {
owner = "nushell";
repo = "nushell";
2020-01-07 20:58:06 +03:00
rev = version;
hash = "sha256-jUZKqsu0/RO4mc+hzjis1mNrohj1JzM17Z8e2Ggxlfs=";
2019-11-09 12:20:00 +03:00
};
cargoHash = "sha256-WDGhuc2ZGDwfh7X/oRTZLzmKPj1jSnQFL4sy7KYt5Js=";
nativeBuildInputs = [ pkg-config ]
++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ python3 ]
++ lib.optionals stdenv.isDarwin [ rustPlatform.bindgenHook ];
2019-11-09 12:20:00 +03:00
2021-08-07 00:34:58 +03:00
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 [ ];
2020-01-29 23:03:54 +03:00
inherit doCheck;
2021-05-10 03:45:56 +03:00
checkPhase = ''
runHook preCheck
echo "Running cargo test"
HOME=$(mktemp -d) cargo test
runHook postCheck
'';
2019-11-09 12:20:00 +03:00
passthru = {
shellPath = "/bin/nu";
2022-05-26 18:12:31 +03:00
tests.version = testers.testVersion {
package = nushell;
};
updateScript = nix-update-script { };
2019-11-09 12:20:00 +03:00
};
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";
};
}