nixpkgs/pkgs/tools/misc/powerline-rs/default.nix

33 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ stdenv, lib, rustPlatform, fetchFromGitLab, pkg-config, file, perl, curl, cmake, openssl, libssh2, libgit2, libzip, Security }:
2018-05-05 09:37:37 +00:00
rustPlatform.buildRustPackage rec {
pname = "powerline-rs";
version = "0.2.0";
2018-05-05 09:37:37 +00:00
2018-10-28 13:21:12 +00:00
src = fetchFromGitLab {
2018-05-05 09:37:37 +00:00
owner = "jD91mZM2";
repo = "powerline-rs";
rev = version;
2018-10-28 13:21:12 +00:00
sha256 = "0rqlxxl58dpfvm2idhi0vzinraf4bgiapmawiih9wxs599fnhm3y";
2018-05-05 09:37:37 +00:00
};
cargoSha256 = "1i29wps7wz6b0qarqqg8rplq7ak1zz83k6m182sjk17cni74n21l";
2018-05-05 09:37:37 +00:00
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config file perl cmake curl ];
2018-09-12 23:56:08 +00:00
buildInputs = [ openssl libssh2 libgit2 libzip ] ++ lib.optional stdenv.isDarwin Security;
2018-10-28 13:21:12 +00:00
COMPLETION_OUT = "out";
postInstall = ''
install -Dm 755 "${COMPLETION_OUT}/${pname}.bash" "$out/share/bash-completion/completions/${pname}"
2018-10-28 13:21:12 +00:00
install -Dm 755 "${COMPLETION_OUT}/${pname}.fish" "$out/share/fish/vendor_completions.d/${pname}"
'';
2018-05-05 09:37:37 +00:00
meta = with lib; {
description = "powerline-shell rewritten in Rust, inspired by powerline-go";
2018-05-06 05:28:42 +00:00
license = licenses.mit;
2018-05-05 09:37:37 +00:00
maintainers = with maintainers; [ jD91mZM2 ];
platforms = platforms.unix;
};
}