nixpkgs/pkgs/applications/version-management/git-and-tools/gitui/default.nix

27 lines
838 B
Nix
Raw Normal View History

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