forked from mirrors/nixpkgs
27 lines
843 B
Nix
27 lines
843 B
Nix
{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv, perl, python3, Security, AppKit, openssl, xclip }:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "gitui";
|
|
version = "0.16.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "extrawurst";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-8RPIPimDImLUR9oHVZZ7ZeKLtIhebv/d0kl4CQ5NFdU=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-1IHbOjZV8Rc0el7J983B8pvnbt8+QtYiknZU/I85OnY=";
|
|
|
|
nativeBuildInputs = [ python3 perl ];
|
|
buildInputs = [ openssl ]
|
|
++ lib.optional stdenv.isLinux xclip
|
|
++ lib.optionals stdenv.isDarwin [ libiconv Security AppKit ];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|