about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-09-07 14:40:31 -0500
committerGitHub <noreply@github.com>2019-09-07 14:40:31 -0500
commit493e51deadfd6f27e6fc3c6949c5e9a048fde5d6 (patch)
tree2338b7124f2f64ecd7c4a049f9987a555efad1d5 /pkgs/tools
parent1ce20f23e7f7e5f36fde6a08b064dc50a46ebba0 (diff)
parent7a77001b074ac2c3e1f5b14356633df1a5cd12b8 (diff)
downloadnixlib-493e51deadfd6f27e6fc3c6949c5e9a048fde5d6.tar
nixlib-493e51deadfd6f27e6fc3c6949c5e9a048fde5d6.tar.gz
nixlib-493e51deadfd6f27e6fc3c6949c5e9a048fde5d6.tar.bz2
nixlib-493e51deadfd6f27e6fc3c6949c5e9a048fde5d6.tar.lz
nixlib-493e51deadfd6f27e6fc3c6949c5e9a048fde5d6.tar.xz
nixlib-493e51deadfd6f27e6fc3c6949c5e9a048fde5d6.tar.zst
nixlib-493e51deadfd6f27e6fc3c6949c5e9a048fde5d6.zip
Merge pull request #68270 from marsam/update-starship
starship: 0.13.1 -> 0.15.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/starship/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/starship/default.nix b/pkgs/tools/misc/starship/default.nix
index 487858e61872..c51bf998b322 100644
--- a/pkgs/tools/misc/starship/default.nix
+++ b/pkgs/tools/misc/starship/default.nix
@@ -2,19 +2,19 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "starship";
-  version = "0.13.1";
+  version = "0.15.0";
 
   src = fetchFromGitHub {
     owner = "starship";
     repo = "starship";
     rev = "v${version}";
-    sha256 = "0y6ixl3i1brak226hh02da1zzlcv41f0kb648dqii6dzyhrwhrld";
+    sha256 = "164qxbzlzg53xicp2n5kg9qbmvlckc6rk78n69s82d2d09mbq1ks";
   };
 
   buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ];
   nativeBuildInputs = [ pkgconfig ];
 
-  cargoSha256 = "1xk4ngxhgww921fk40d4ziprnzgp927lhdwwzcifcb0hdyl0854p";
+  cargoSha256 = "192lq0wf8c2p3s4n6c0xr02hwyswypxypimbghi4m8f3fgj2l3ig";
   checkPhase = "cargo test -- --skip directory::home_directory --skip directory::directory_in_root";
 
   meta = with stdenv.lib; {