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

Commits on Jan 13, 2021

  1. nushell: 0.24.1 -> 0.25.1

    archaeron authored Jan 13, 2021
    Copy the full SHA
    ab879aa View commit details

Commits on Jan 14, 2021

  1. Merge pull request #109297 from archaeron/update-nushell

    nushell: 0.24.1 -> 0.25.1
    marsam authored Jan 14, 2021
    Copy the full SHA
    57d3248 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
@@ -15,16 +15,16 @@

rustPlatform.buildRustPackage rec {
pname = "nushell";
version = "0.24.1";
version = "0.25.1";

src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "0nza860gg9lnkld9c7is93fmfxl9yay8yf2f18h16cgjk3n686kd";
sha256 = "0wsl57i3cd9whqvgjdnbz05230mkn2174gqld7mzn9iiym1rkcm4";
};

cargoSha256 = "1mb6ws2zw089cx475c1vpvvxkzi8by6wmw4frans5lbl3a2lldl0";
cargoSha256 = "1ifvfwmrl97skjwp1qwrj863npsxcgfqm4a81cvw9bqhbylbjc77";

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