fix(Infini-SERVER/nitter): use workaround for Age Restricted content

This commit is contained in:
Infinidoge 2023-04-09 14:55:58 -04:00
parent c08331398c
commit f6db62fef1
2 changed files with 10 additions and 0 deletions

View file

@ -3,6 +3,7 @@
(with suites; [ base ])
private.nixosModules.minecraft-servers
private.nixosModules.nitter
./hardware-configuration.nix
];

View file

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