1 { lib, stdenv, fetchFromGitHub, python3, zip }: let
3 sha256 = "sha256-563xOz63vto19yuaHtReV1dSw6BgNf+CLtS3lrPnaoc=";
6 src = fetchFromGitHub {
12 in stdenv.mkDerivation {
13 inherit pname version src;
18 (python3.withPackages (pythonPackages: with pythonPackages; [
25 zip -r ../pridefetch.zip ./*
27 echo '#!/usr/bin/env python' | cat - pridefetch.zip > pridefetch
34 mv pridefetch $out/bin/pridefetch
35 chmod +x $out/bin/pridefetch
39 description = "Print out system statistics with pride flags";
41 Pridefetch prints your system statistics (similarly to neofetch, screenfetch or pfetch) along with a pride flag.
42 The flag which is printed is configurable, as well as the width of the output.
44 homepage = "https://github.com/SpyHoodle/pridefetch";
45 license = licenses.mit;
47 maintainers.minion3665
49 platforms = platforms.all;