gitui: 0.9.1 -> 0.10.1

- add python3 for nativeBuildInputs
- add xorg.libxcb for buildInputs

Co-authored-by: Jon <jonringer@users.noreply.github.com>
This commit is contained in:
Antonio Yang 2020-09-08 00:00:09 +08:00
parent 2a4607f442
commit 866ce94402

View File

@ -1,24 +1,26 @@
{ stdenv, rustPlatform, fetchFromGitHub, libiconv, Security }: { stdenv, rustPlatform, fetchFromGitHub, libiconv, xorg, python3, Security }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "gitui"; pname = "gitui";
version = "0.9.1"; version = "0.10.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "extrawurst"; owner = "extrawurst";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0lxpdwpxizc4bczh5cl2x2xbbdam3fakvgcbbrdh43czgjwb4ds1"; sha256 = "1ifwbi6nydh66z6cprjmz2qvy9z52rj9jg2xf054i249gy955hah";
}; };
cargoSha256 = "14x0m3pq4gapgqaljxdwmr5pk9h209ls95an9xgrq0dj6apyimgx"; cargoSha256 = "1454dn7k1fc4yxhbcmx0z3hj9d9srnlc2k1qp707h1vq46ib1rsf";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ]; nativeBuildInputs = [ python3 ];
buildInputs = [ ]
++ stdenv.lib.optional stdenv.isLinux xorg.libxcb
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Blazing fast terminal-ui for git written in rust"; description = "Blazing fast terminal-ui for git written in rust";
homepage = "https://github.com/extrawurst/gitui"; homepage = "https://github.com/extrawurst/gitui";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ filalex77 ]; maintainers = with maintainers; [ filalex77 yanganto ];
}; };
} }