1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-05-06 05:26:07 +02:00
git.oat.zone--dark-firepit-.../overlays/nitter.nix
Jill "oatmealine" Monoids 9d93277716 mess with nitter (and fail)
2023-06-08 20:13:08 +02:00

13 lines
366 B
Nix

self: super: {
nitter = super.nitter.overrideAttrs (old: {
# https://github.com/zedeus/nitter/pull/830
version = "unstable-2023-05-31";
src = super.fetchFromGitHub {
owner = "zedeus";
repo = "nitter";
rev = "38985af6ed30f050201b15425cdac0dc2e286b6d";
hash = "sha256-YPwApMCsra/T5EzCup28/4FaOrhEuw3MBiitv+LTbi0=";
};
});
}