summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-01-02 11:34:35 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2020-01-02 12:35:48 +0100
commit2ff742e970dedce68fb8a2c1374ea1aaa3f8e686 (patch)
tree165c3894e1d79997406c37256abd48ee6e459fef /pkgs/shells
parentff882242ea70502696b551c7c9bfb933a250c60f (diff)
downloadnixpkgs-2ff742e970dedce68fb8a2c1374ea1aaa3f8e686.tar
nixpkgs-2ff742e970dedce68fb8a2c1374ea1aaa3f8e686.tar.gz
nixpkgs-2ff742e970dedce68fb8a2c1374ea1aaa3f8e686.tar.bz2
nixpkgs-2ff742e970dedce68fb8a2c1374ea1aaa3f8e686.tar.lz
nixpkgs-2ff742e970dedce68fb8a2c1374ea1aaa3f8e686.tar.xz
nixpkgs-2ff742e970dedce68fb8a2c1374ea1aaa3f8e686.tar.zst
nixpkgs-2ff742e970dedce68fb8a2c1374ea1aaa3f8e686.zip
nushell: 0.7.0 -> 0.7.1
https://crates.io/crates/nu/0.7.1

`aarch64-linux` is currently not supported as several crates fail to
compile on ARM archs (https://github.com/nushell/nushell/issues/485).
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/nushell/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix
index 05fef442c31..430648cc16d 100644
--- a/pkgs/shells/nushell/default.nix
+++ b/pkgs/shells/nushell/default.nix
@@ -13,13 +13,13 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "nushell";
-  version = "0.7.0";
+  version = "0.7.1";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
-    rev = version;
-    sha256 = "09kcyvhnhf5qsaivgrw58l9jh48rx40i9lkf10cpmk7jvqxgqyks";
+    rev = "f9da7f7d58da3ead2aaba6a519c554d1b199c158"; # 0.7.1 on crates.io
+    sha256 = "0k662wq2m3xfnzkkrsiv5h2m9y3l44fr3gab933ggrdgj2xydqnh";
   };
 
   cargoSha256 = "0bdxlbl33kilp9ai40dvdzlx9vcl8r21br82r5ljs2pg521jd66p";
@@ -43,6 +43,7 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://www.nushell.sh/";
     license = licenses.mit;
     maintainers = with maintainers; [ filalex77 marsam ];
+    platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ];
   };
 
   passthru = {