about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/powerline-rs
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-01-14 23:59:31 +0000
committerAlyssa Ross <hi@alyssa.is>2020-01-14 23:59:31 +0000
commit388bd5ecef704d7aa423878e28cf46820ba42aaa (patch)
treef56964e1b059a3400259b2a6c9274f0bd58e5648 /nixpkgs/pkgs/tools/misc/powerline-rs
parenta5e4eba0a2066e541c1e81938655cbf62067804e (diff)
parent100012e55bc2a82fc680cba31a426ad38ead6fab (diff)
downloadnixlib-388bd5ecef704d7aa423878e28cf46820ba42aaa.tar
nixlib-388bd5ecef704d7aa423878e28cf46820ba42aaa.tar.gz
nixlib-388bd5ecef704d7aa423878e28cf46820ba42aaa.tar.bz2
nixlib-388bd5ecef704d7aa423878e28cf46820ba42aaa.tar.lz
nixlib-388bd5ecef704d7aa423878e28cf46820ba42aaa.tar.xz
nixlib-388bd5ecef704d7aa423878e28cf46820ba42aaa.tar.zst
nixlib-388bd5ecef704d7aa423878e28cf46820ba42aaa.zip
Merge commit '100012e55bc2a82fc680cba31a426ad38ead6fab'
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/powerline-rs')
-rw-r--r--nixpkgs/pkgs/tools/misc/powerline-rs/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/nixpkgs/pkgs/tools/misc/powerline-rs/default.nix b/nixpkgs/pkgs/tools/misc/powerline-rs/default.nix
index ff98bce39d8c..309ccf8070b6 100644
--- a/nixpkgs/pkgs/tools/misc/powerline-rs/default.nix
+++ b/nixpkgs/pkgs/tools/misc/powerline-rs/default.nix
@@ -1,20 +1,18 @@
 { stdenv, lib, rustPlatform, fetchFromGitLab, pkgconfig, file, perl, curl, cmake, openssl, libssh2, libgit2, libzip, Security }:
+
 rustPlatform.buildRustPackage rec {
   pname = "powerline-rs";
-  version = "0.1.9";
+  version = "0.2.0";
 
   src = fetchFromGitLab {
     owner = "jD91mZM2";
     repo = "powerline-rs";
-    #rev = version;
-
-    # Support for $COMPLETION_OUT:
-    rev = "44679385a95dd9f3ebd9b093f9ef8925610e9a23";
+    rev = version;
 
-    sha256 = "1mxkw6ydnqjyplbki2j9pbnlhxmkw9qqw54443a3cjmn2g08jyzp";
+    sha256 = "0rqlxxl58dpfvm2idhi0vzinraf4bgiapmawiih9wxs599fnhm3y";
   };
 
-  cargoSha256 = "1d0f1c1vp1r9r3ic921xkcr59f4a45y2xbxm4gl6grhb9z6p5k7l";
+  cargoSha256 = "1vdx5nwj4qmkb3rdgnchd9xixc5pmhvskvn6dmqgm91s41p2al1p";
 
   nativeBuildInputs = [ pkgconfig file perl cmake curl ];
   buildInputs = [ openssl libssh2 libgit2 libzip ] ++ lib.optional stdenv.isDarwin Security;