nixpkgs/pkgs/shells/nushell/default.nix

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

80 lines
1.8 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
2019-11-09 12:20:00 +03:00
, libiconv
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
}:
rustPlatform.buildRustPackage (
let
2023-06-28 04:11:04 +03:00
version = "0.82.0";
pname = "nushell";
in {
inherit version pname;
2019-11-09 12:20:00 +03:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2020-01-07 20:58:06 +03:00
rev = version;
2023-06-28 04:11:04 +03:00
hash = "sha256-D/R+/60Lo2rLUA/313CTJQookqSNtbD7LnVf0vBC9Qc=";
2019-11-09 12:20:00 +03:00
};
2023-06-28 04:11:04 +03:00
cargoHash = "sha256-LTnBJDA2RkAP3ZCpl5enUc0PLS63EVXQyIopUwBd8OQ=";
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 ]
2023-02-16 19:50:14 +03:00
++ lib.optionals stdenv.isDarwin [ zlib libiconv Libsystem Security ]
++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ xorg.libX11 ]
++ lib.optionals (withDefaultFeatures && stdenv.isDarwin) [ AppKit nghttp2 libgit2 ];
buildFeatures = additionalFeatures [ (lib.optional withDefaultFeatures "default") ];
2020-01-29 23:03:54 +03:00
2021-05-10 03:45:56 +03:00
# TODO investigate why tests are broken on darwin
# failures show that tests try to write to paths
# outside of TMPDIR
doCheck = doCheck && !stdenv.isDarwin;
2021-05-10 03:45:56 +03:00
checkPhase = ''
runHook preCheck
echo "Running cargo test"
HOME=$TMPDIR cargo test
runHook postCheck
'';
2020-01-29 23:03:54 +03:00
meta = with lib; {
2019-11-09 12:20:00 +03:00
description = "A modern shell written in Rust";
homepage = "https://www.nushell.sh/";
license = licenses.mit;
maintainers = with maintainers; [ Br1ght0ne johntitor marsam ];
2021-04-27 14:44:53 +03:00
mainProgram = "nu";
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
};
})