From 86af5598c67d216d2568c79acdf65a1d58594cc4 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Fri, 29 Apr 2022 07:52:28 -0400 Subject: [PATCH] [-] nixos: remove old script --- nixos/hyfetch.nix | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 nixos/hyfetch.nix diff --git a/nixos/hyfetch.nix b/nixos/hyfetch.nix deleted file mode 100644 index da95cdf5..00000000 --- a/nixos/hyfetch.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ lib -, stdenv -, python3Packages -}: - -python3Packages.buildPythonPackage rec { - pname = "HyFetch"; - version = "1.0.7"; - - src = python3Packages.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; - maintainers = with maintainers; [ hykilpikonna ]; - mainProgram = "hyfetch"; - }; -}