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