xin/overlays/invidious.nix

15 lines
374 B
Nix
Raw Normal View History

2024-04-01 10:20:50 -06:00
let
invidious = _: super: {
invidious = super.invidious.overrideAttrs (_: {
patches = [
(super.fetchpatch {
name = "use-android";
url = "https://patch-diff.githubusercontent.com/raw/iv-org/invidious/pull/4650.diff";
hash = "sha256-nI9T0p2i2uqB2qJgZXD1nhiBUNhpTvMPS/XNNWPWCBs=";
2024-04-01 10:20:50 -06:00
})
];
});
};
in
invidious