2022-08-02 00:05:11 +02:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, typing-extensions, setuptools }:
|
2022-07-27 05:27:51 +02:00
|
|
|
|
2022-08-02 00:05:11 +02:00
|
|
|
buildPythonPackage rec {
|
2022-07-27 05:27:51 +02:00
|
|
|
pname = "HyFetch";
|
2022-08-14 01:43:18 +02:00
|
|
|
version = "1.4.0";
|
2022-07-27 05:27:51 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "hyfetch";
|
|
|
|
owner = "hykilpikonna";
|
2022-08-14 01:43:18 +02:00
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
sha256 = "sha256-15FeW3yaM7eUJ1O20H/bQquDRAsRWTJMzkzQ5Kv1ezE=";
|
2022-07-27 05:27:51 +02:00
|
|
|
};
|
|
|
|
|
2022-08-02 00:05:11 +02:00
|
|
|
propagatedBuildInputs = [
|
2022-07-27 05:27:51 +02:00
|
|
|
typing-extensions
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "neofetch with pride flags <3";
|
|
|
|
longDescription = ''
|
|
|
|
HyFetch is a command-line system information tool fork of neofetch.
|
|
|
|
HyFetch displays information about your system next to your OS logo
|
|
|
|
in ASCII representation. The ASCII representation is then colored in
|
|
|
|
the pattern of the pride flag of your choice. The main purpose of
|
|
|
|
HyFetch is to be used in screenshots to show other users what
|
|
|
|
operating system or distribution you are running, what theme or
|
|
|
|
icon set you are using, etc.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/hykilpikonna/HyFetch";
|
|
|
|
license = licenses.mit;
|
|
|
|
mainProgram = "hyfetch";
|
2022-08-02 00:05:11 +02:00
|
|
|
maintainers = with maintainers; [ yisuidenghua ];
|
2022-07-27 05:27:51 +02:00
|
|
|
};
|
|
|
|
}
|