nushell: 0.91.0 -> 0.92.0

This commit is contained in:
Joaquín Triñanes 2024-03-13 18:59:39 +01:00
parent 5fa02d3366
commit 6c9370cae1
No known key found for this signature in database
GPG key ID: 6E1446DD451C6BAF
2 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@
}:
let
version = "0.91.0";
version = "0.92.0";
in
rustPlatform.buildRustPackage {
@ -35,10 +35,10 @@ rustPlatform.buildRustPackage {
owner = "nushell";
repo = "nushell";
rev = version;
hash = "sha256-X3D+JRvnk6HMKWJMTNR16Fmhu+gYd8Ip+7PZQoLIoEU=";
hash = "sha256-k1YBKLRKqHIQ4k1tTtQ4OxJ+UFWrpGi3j/XoRTSJLIk=";
};
cargoHash = "sha256-Xj4P/qd4GvmhWGwGaPvY23cQwdjdf6cSb1xyRZLN0tQ=";
cargoHash = "sha256-A+3ge+R0TZ4gRf4fZlFbIttb1IzFR2GfEo/2PmRZAyc=";
nativeBuildInputs = [ pkg-config ]
++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ python3 ]

View file

@ -27950,7 +27950,7 @@ with pkgs;
inherit (darwin.apple_sdk_11_0.frameworks) AppKit Security;
};
nushellFull = nushell.override { additionalFeatures = p: p ++ ["dataframe" "extra"]; };
nushellFull = nushell.override { additionalFeatures = p: p ++ ["dataframe"]; };
nu_scripts = callPackage ../shells/nushell/nu_scripts { };