default.nix 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. with import <nixpkgs> {};
  2. rec {
  3. hyfetch = python3Packages.buildPythonPackage rec {
  4. pname = "HyFetch";
  5. version = "1.0.7";
  6. src = pythonPackages.fetchPypi {
  7. inherit pname version;
  8. hash = "sha256-3/6/3EtTqHXTMuRIo2nclIxYSzOFvQegR29OJsKMQU4=";
  9. };
  10. propagatedBuildInputs = with python3Packages; [
  11. typing-extensions
  12. setuptools
  13. ];
  14. doCheck = false;
  15. meta = with lib; {
  16. description = "neofetch with pride flags <3";
  17. longDescription = ''
  18. HyFetch is a command-line system information tool fork of neofetch.
  19. HyFetch displays information about your system next to your OS logo
  20. in ASCII representation. The ASCII representation is then colored in
  21. the pattern of the pride flag of your choice. The main purpose of
  22. HyFetch is to be used in screenshots to show other users what
  23. operating system or distribution you are running, what theme or
  24. icon set you are using, etc.
  25. '';
  26. homepage = "https://github.com/hykilpikonna/HyFetch";
  27. license = licenses.mit;
  28. mainProgram = "hyfetch";
  29. };
  30. };
  31. }