fix(Infini-SERVER/nitter): use workaround for Age Restricted content
This commit is contained in:
parent
c08331398c
commit
f6db62fef1
2 changed files with 10 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
||||||
(with suites; [ base ])
|
(with suites; [ base ])
|
||||||
|
|
||||||
private.nixosModules.minecraft-servers
|
private.nixosModules.minecraft-servers
|
||||||
|
private.nixosModules.nitter
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,13 @@ final: prev: {
|
||||||
coreutils-doge = prev.coreutils.overrideAttrs (old: {
|
coreutils-doge = prev.coreutils.overrideAttrs (old: {
|
||||||
patches = [ ./coreutils.patch ];
|
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=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue