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

Commits on Apr 11, 2020

  1. starship: 0.39.0 -> 0.40.0

    bbigras committed Apr 11, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    83a0ed4 View commit details
  2. Merge pull request #85015 from bbigras/starship

    starship: 0.39.0 -> 0.40.0
    garbas authored Apr 11, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    ac2f730 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.39.0";
version = "0.40.0";

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

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

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

meta = with stdenv.lib; {