Merge pull request #245494 from marsam/update-nushell

nushell: 0.82.0 -> 0.83.0

authored by Mario Rodas and committed by GitHub fb4debd7 32865b67

+9 -6
+3 -3
pkgs/shells/nushell/default.nix
··· 22 22 }: 23 23 24 24 let 25 - version = "0.82.0"; 25 + version = "0.83.0"; 26 26 in 27 27 28 28 rustPlatform.buildRustPackage { ··· 33 33 owner = "nushell"; 34 34 repo = "nushell"; 35 35 rev = version; 36 - hash = "sha256-D/R+/60Lo2rLUA/313CTJQookqSNtbD7LnVf0vBC9Qc="; 36 + hash = "sha256-+/y4gtcrn6pM+LrzRQuHPACszZpYHCXMLbPlaIi4SAY="; 37 37 }; 38 38 39 - cargoHash = "sha256-LTnBJDA2RkAP3ZCpl5enUc0PLS63EVXQyIopUwBd8OQ="; 39 + cargoHash = "sha256-amDSzsDeG4ABlFLlytcfJV0xA9Rl7Udb/nWEz64pWi0="; 40 40 41 41 nativeBuildInputs = [ pkg-config ] 42 42 ++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ python3 ]
+6 -3
pkgs/shells/nushell/nu_scripts/default.nix
··· 1 1 { lib 2 2 , stdenvNoCC 3 3 , fetchFromGitHub 4 + , unstableGitUpdater 4 5 }: 5 6 6 7 stdenvNoCC.mkDerivation rec { 7 8 pname = "nu_scripts"; 8 - version = "unstable-2023-04-26"; 9 + version = "unstable-2023-07-24"; 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "nushell"; 12 13 repo = pname; 13 - rev = "724f89c330dc5b93a2fde29f732cbd5b8d73785c"; 14 - hash = "sha256-aCLFbxVE8/hWsPNPLt2Qn8CaBkYJJLSDgpl6LYvFVYc="; 14 + rev = "e6adf4e0ae04f946fcc93a77e0992e2e00467e26"; 15 + hash = "sha256-6hQEBotZyNuBL0vAzqS1C9LLMk2RMv5ZwFCcSI3aSU8="; 15 16 }; 16 17 17 18 installPhase = '' ··· 22 23 23 24 runHook postInstall 24 25 ''; 26 + 27 + passthru.updateScript = unstableGitUpdater { }; 25 28 26 29 meta = { 27 30 description = "A place to share Nushell scripts with each other";