Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ff882242ea70
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2ff742e970de
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 2, 2020

  1. 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 (nushell/nushell#485).
    Ma27 committed Jan 2, 2020
    Copy the full SHA
    2ff742e View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/shells/nushell/default.nix
7 changes: 4 additions & 3 deletions pkgs/shells/nushell/default.nix
Original file line number Diff line number Diff line change
@@ -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 = {