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

Commits on Apr 14, 2020

  1. starship: 0.40.0 -> 0.40.1

    Elyhaka authored and Elyhaka committed Apr 14, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dasJ Janne Heß
    Copy the full SHA
    bab96b5 View commit details
  2. Merge pull request #85200 from Elyhaka/starship-fix

    starship: 0.40.0 -> 0.40.1
    dywedir authored Apr 14, 2020
    Copy the full SHA
    7e82266 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/starship/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/misc/starship/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

rustPlatform.buildRustPackage rec {
pname = "starship";
version = "0.40.0";
version = "0.40.1";

src = fetchFromGitHub {
owner = "starship";
repo = pname;
rev = "v${version}";
sha256 = "11x5j91dank0zgxy1y5abhfymyzf3fpfvw6g1ll23vwxmspm8f4w";
sha256 = "0jnm586wx5by1b6v78v78a84qzg05n1ha1hlmnjfyzhgjkbkayp1";
};

nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
@@ -22,7 +22,7 @@ rustPlatform.buildRustPackage rec {
--replace "/bin/echo" "echo"
'';

cargoSha256 = "0z0k9nq6fjg30380yc1skdzw0mhfljhkpagm8mh5w9bz1bzyd45d";
cargoSha256 = "1jrlzihcq543z6hb1gq8zq6hqvgralzsknj3xnb6gia1n49b3zxz";
checkPhase = "cargo test -- --skip directory::home_directory --skip directory::directory_in_root";

meta = with stdenv.lib; {