mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
884cbc5d5d
Now *finally* uses crate2nix because it's awesome! ---------------- Squashed with: Apply suggestions from code review Co-Authored-By: Jon <jonringer@users.noreply.github.com>
33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{ stdenv, lib, rustPlatform, fetchFromGitLab, pkgconfig, 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 = "1vdx5nwj4qmkb3rdgnchd9xixc5pmhvskvn6dmqgm91s41p2al1p";
|
|
|
|
nativeBuildInputs = [ pkgconfig 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/etc/bash_completion.d/${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;
|
|
};
|
|
}
|