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: c7a503bf2e9b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2c73dd64b0bb
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 5, 2020

  1. nushell: 0.18.1 -> 0.19.0

    r-ryantm committed Sep 5, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    rnhmjoj Michele Guerini Rocco
    Copy the full SHA
    0a8c2f8 View commit details
  2. Merge pull request #97208 from r-ryantm/auto-update/nushell

    nushell: 0.18.1 -> 0.19.0
    Ma27 authored Sep 5, 2020
    Copy the full SHA
    2c73dd6 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/shells/nushell/default.nix
6 changes: 3 additions & 3 deletions pkgs/shells/nushell/default.nix
Original file line number Diff line number Diff line change
@@ -14,16 +14,16 @@

rustPlatform.buildRustPackage rec {
pname = "nushell";
version = "0.18.1";
version = "0.19.0";

src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "100r26dx57wdzdpf6lgsgw0py33k3nsx73pa1qjcipwv00a106sr";
sha256 = "08r6f71cy4j22k0mllm134x4dfixaircpaz5arrj93xsbp38nk92";
};

cargoSha256 = "0ch79zsnqb5n9r7jq6figpmqp2cs2p9a3m7fg3sd04m797ki9chr";
cargoSha256 = "15kvl490abxdv6706zs7pv0q5fhghmdvlfbn19037sldkcsfl86b";

nativeBuildInputs = [ pkg-config ]
++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ];