lol

neofetch: apply patch to fix neofetch returning wrong icon theme

+9 -1
+9 -1
pkgs/tools/misc/neofetch/default.nix
··· 1 1 { lib, stdenvNoCC, fetchFromGitHub, bash, makeWrapper, pciutils 2 - , x11Support ? true, ueberzug 2 + , x11Support ? true, ueberzug, fetchpatch 3 3 }: 4 4 5 5 stdenvNoCC.mkDerivation rec { ··· 12 12 rev = "6dd85d67fc0d4ede9248f2df31b2cd554cca6c2f"; 13 13 sha256 = "sha256-PZjFF/K7bvPIjGVoGqaoR8pWE6Di/qJVKFNcIz7G8xE="; 14 14 }; 15 + 16 + patches = [ 17 + (fetchpatch { 18 + url = "https://github.com/dylanaraps/neofetch/commit/413c32e55dc16f0360f8e84af2b59fe45505f81b.patch"; 19 + sha256 = "1fapdg9z79f0j3vw7fgi72b54aw4brn42bjsj48brbvg3ixsciph"; 20 + name = "avoid_overwriting_gio_extra_modules_env_var.patch"; 21 + }) 22 + ]; 15 23 16 24 strictDeps = true; 17 25 buildInputs = [ bash ];