summary refs log tree commit diff
path: root/pkgs/shells/nushell
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2023-04-04 18:58:44 -0400
committerhappysalada <raphael@megzari.com>2023-04-04 18:59:25 -0400
commit4b7d7154cded6481e82af8728cac731c98f226d0 (patch)
treeed26a4c9d1ad1182998546be077a4298e8ba8d6d /pkgs/shells/nushell
parent74326823056b644cb24bbefa38f0e84072649859 (diff)
downloadnixpkgs-4b7d7154cded6481e82af8728cac731c98f226d0.tar
nixpkgs-4b7d7154cded6481e82af8728cac731c98f226d0.tar.gz
nixpkgs-4b7d7154cded6481e82af8728cac731c98f226d0.tar.bz2
nixpkgs-4b7d7154cded6481e82af8728cac731c98f226d0.tar.lz
nixpkgs-4b7d7154cded6481e82af8728cac731c98f226d0.tar.xz
nixpkgs-4b7d7154cded6481e82af8728cac731c98f226d0.tar.zst
nixpkgs-4b7d7154cded6481e82af8728cac731c98f226d0.zip
nushell: 0.77.1 -> 0.78.0
Diffstat (limited to 'pkgs/shells/nushell')
-rw-r--r--pkgs/shells/nushell/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix
index 69957209cf2..c2196952e8b 100644
--- a/pkgs/shells/nushell/default.nix
+++ b/pkgs/shells/nushell/default.nix
@@ -1,8 +1,6 @@
 { stdenv
 , lib
 , fetchFromGitHub
-, fetchpatch
-, runCommand
 , rustPlatform
 , openssl
 , zlib
@@ -26,7 +24,7 @@
 
 rustPlatform.buildRustPackage (
   let
-    version =  "0.77.1";
+    version =  "0.78.0";
     pname = "nushell";
   in {
   inherit version pname;
@@ -35,10 +33,10 @@ rustPlatform.buildRustPackage (
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "sha256-MheKGfm72cxFtMIDj8VxEN4VFB1+tLoj+ujzL/7n8YI=";
+    hash = "sha256-fxx34xTFan5DcKo/sxFq6JxObGFTs4myNM0WmL5hnl8=";
   };
 
-  cargoSha256 = "sha256-oUeoCAeVP2MBAhJfMptK+Z3n050cqpIIgnUroRVBYjg=";
+  cargoHash = "sha256-VqM6SAzYqwSSo3csjNCvcrZGwemtVHEGvh8gufouMeQ=";
 
   nativeBuildInputs = [ pkg-config ]
     ++ lib.optionals (withDefaultFeatures && stdenv.isLinux) [ python3 ]