2021-01-11 07:54:33 +00:00
|
|
|
{ fetchFromGitHub, rustPlatform, lib, stdenv, fetchpatch
|
2019-11-25 20:06:35 +00:00
|
|
|
, CoreFoundation, libiconv, libresolv, Security }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "onefetch";
|
2021-01-20 14:19:35 +00:00
|
|
|
version = "2.9.1";
|
2019-11-25 20:06:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "o2sh";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-01-20 14:19:35 +00:00
|
|
|
sha256 = "sha256-owa+HmzMXpLR7H1FssW4gQiVAQGJRXhcitgJj6pxJRc=";
|
2019-11-25 20:06:35 +00:00
|
|
|
};
|
|
|
|
|
2021-01-20 14:19:35 +00:00
|
|
|
cargoSha256 = "sha256-TqWe4eARQmmWcwnvb6BIZrzGeKMpiIObPv0cW1JvWj4=";
|
2019-11-25 20:06:35 +00:00
|
|
|
|
2021-02-12 03:25:30 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation libiconv libresolv Security ];
|
2019-11-25 20:06:35 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-11-25 20:06:35 +00:00
|
|
|
description = "Git repository summary on your terminal";
|
|
|
|
homepage = "https://github.com/o2sh/onefetch";
|
|
|
|
license = licenses.mit;
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne kloenk ];
|
2019-11-25 20:06:35 +00:00
|
|
|
};
|
|
|
|
}
|