Merge pull request #40033 from jD91mZM2/powerline-rs

powerline-rs: fix stuff
This commit is contained in:
Joachim F 2018-05-07 14:21:18 +00:00 committed by GitHub
commit 4893356bb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib, rustPlatform, fetchFromGitHub, pkgconfig, file, perl, cmake, libgit2, openssl_1_1_0, libssh2, libzip }:
{ lib, rustPlatform, fetchFromGitHub, pkgconfig, file, perl, cmake, openssl_1_1_0, libssh2, libgit2, libzip }:
rustPlatform.buildRustPackage rec {
name = "powerline-rs-${version}";
pname = "powerline-rs";
name = "${pname}-${version}";
version = "0.1.7";
src = fetchFromGitHub {
@ -14,8 +15,12 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "184s432a6damzvl0lv6jar1iml9dq60r190aqjy44lcg938981zc";
nativeBuildInputs = [ pkgconfig file perl cmake ];
buildInputs = [ libgit2 ];
propagatedBuildInputs = [ openssl_1_1_0 libssh2 libzip ];
buildInputs = [ openssl_1_1_0 libssh2 libgit2 libzip ];
postInstall = ''
install -Dm 755 "${pname}.bash" "$out/etc/bash_completion.d/${pname}"
install -Dm 755 "${pname}.fish" "$out/share/fish/vendor_completions.d/${pname}"
'';
meta = with lib; {
description = "powerline-shell rewritten in Rust, inspired by powerline-go";