gitAndTools.gitui: init at 0.2.0

This commit is contained in:
Oleksii Filonenko 2020-05-01 14:28:35 +00:00 committed by Mario Rodas
parent 3a13939765
commit b503187046
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027
2 changed files with 28 additions and 0 deletions

View File

@ -173,6 +173,10 @@ let
gitstatus = callPackage ./gitstatus { };
gitui = callPackage ./gitui {
inherit (darwin.apple_sdk.frameworks) Security;
};
grv = callPackage ./grv { };
hub = callPackage ./hub { };

View File

@ -0,0 +1,24 @@
{ stdenv, rustPlatform, fetchFromGitHub, libiconv, Security }:
rustPlatform.buildRustPackage rec {
pname = "gitui";
version = "0.2.0";
src = fetchFromGitHub {
owner = "extrawurst";
repo = pname;
rev = "v${version}";
sha256 = "06x4a7ynq6vznjwdm0dhzlj9353skxz65xabwr5xxa85zp2a7vcm";
};
cargoSha256 = "08z3z1m0ik62gzj146a4imk4xx5n8sbvjs0w7gkclvlsvm9dp8q4";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
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; [ filalex77 ];
};
}