fix(patches): disable nitter patch

This commit is contained in:
Infinidoge 2023-06-18 12:43:22 -04:00
parent 844418747f
commit 58bc35092e

View file

@ -3,12 +3,12 @@ final: prev: {
patches = [ ./coreutils.patch ]; patches = [ ./coreutils.patch ];
}); });
nitter = prev.nitter.overrideAttrs (old: { # nitter = prev.nitter.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [ # patches = (old.patches or [ ]) ++ [
(final.fetchpatch { # (final.fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/zedeus/nitter/pull/830.patch"; # url = "https://patch-diff.githubusercontent.com/raw/zedeus/nitter/pull/830.patch";
hash = "sha256-MIl22yWHAGQtcB1/B9OfbfoVhxOBIAJ3n1eT2Ko1Y3Q="; # hash = "sha256-MIl22yWHAGQtcB1/B9OfbfoVhxOBIAJ3n1eT2Ko1Y3Q=";
}) # })
]; # ];
}); # });
} }