about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/powerline-rs
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/powerline-rs')
-rw-r--r--nixpkgs/pkgs/tools/misc/powerline-rs/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/misc/powerline-rs/default.nix b/nixpkgs/pkgs/tools/misc/powerline-rs/default.nix
new file mode 100644
index 000000000000..4e5a3476f535
--- /dev/null
+++ b/nixpkgs/pkgs/tools/misc/powerline-rs/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, lib, rustPlatform, fetchFromGitLab, pkg-config, file, perl, curl, cmake, openssl, libssh2, libgit2, libzip, Security }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "powerline-rs";
+  version = "0.2.0";
+
+  src = fetchFromGitLab {
+    owner = "jD91mZM2";
+    repo = "powerline-rs";
+    rev = version;
+
+    sha256 = "0rqlxxl58dpfvm2idhi0vzinraf4bgiapmawiih9wxs599fnhm3y";
+  };
+
+  cargoSha256 = "0a41a6kgwgz4040c2369jldvk6xy6s6fkgayca0qy7hdwc4bcxdp";
+
+  nativeBuildInputs = [ pkg-config file perl cmake curl ];
+  buildInputs = [ openssl libssh2 libgit2 libzip ] ++ lib.optional stdenv.isDarwin Security;
+
+  COMPLETION_OUT = "out";
+  postInstall = ''
+    install -Dm 755 "${COMPLETION_OUT}/${pname}.bash" "$out/share/bash-completion/completions/${pname}"
+    install -Dm 755 "${COMPLETION_OUT}/${pname}.fish" "$out/share/fish/vendor_completions.d/${pname}"
+  '';
+
+  meta = with lib; {
+    description = "powerline-shell rewritten in Rust, inspired by powerline-go";
+    license = licenses.mit;
+    maintainers = with maintainers; [ jD91mZM2 ];
+    platforms = platforms.unix;
+  };
+}