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

Commits on Jan 16, 2020

  1. starship: 0.33.0 -> 0.33.1

    davidtwco committed Jan 16, 2020
    Copy the full SHA
    ab648a8 View commit details
  2. Merge pull request #77809 from davidtwco/starship-0.33.1

    starship: 0.33.0 -> 0.33.1
    marsam authored Jan 16, 2020
    Copy the full SHA
    a2f1215 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.33.0";
version = "0.33.1";

src = fetchFromGitHub {
owner = "starship";
repo = pname;
rev = "v${version}";
sha256 = "1wqxcfd7ams3k0swps9037dzc1qzxhpbqaz4qjw9jabgcl6jkb6v";
sha256 = "15z8iwig10brjxirr9nm1aibjz6qpd82v7n9c4i2q1q9qvb3j5cs";
};

buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
@@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
--replace "/bin/echo" "echo"
'';

cargoSha256 = "0gcca3vlwrfhw9k4r9zc1raflr1m4xws9dpdxjh1kz34f9g88ijg";
cargoSha256 = "16jr96ljd34x3fa2jahcqmjm1ds8519hx391wv1snk7y70fz1314";
checkPhase = "cargo test -- --skip directory::home_directory --skip directory::directory_in_root";

meta = with stdenv.lib; {