[F] nixos: Fix something (?)
This commit is contained in:
parent
7b4f209ebe
commit
d7273909f6
1 changed files with 33 additions and 2 deletions
35
default.nix
35
default.nix
|
@ -1,5 +1,36 @@
|
||||||
with import <nixpkgs> {};
|
with import <nixpkgs> {};
|
||||||
|
|
||||||
callPackage ./nixos/hyfetch.nix {
|
rec {
|
||||||
python3Packages = python38Packages;
|
hyfetch = python3Packages.buildPythonPackage rec {
|
||||||
|
pname = "HyFetch";
|
||||||
|
version = "1.0.7";
|
||||||
|
|
||||||
|
src = pythonPackages.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-3/6/3EtTqHXTMuRIo2nclIxYSzOFvQegR29OJsKMQU4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
typing-extensions
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
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";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue