1
0
Fork 0
nix-overlay/packages/nitter-unstable.nix

15 lines
310 B
Nix
Raw Normal View History

2023-05-10 23:04:05 +00:00
{ pkgs, lib }:
2023-02-14 09:27:37 +00:00
pkgs.nitter.overrideAttrs (
2023-04-22 23:11:23 +00:00
oa: {
2023-07-23 16:21:08 +00:00
version = "unstable-2023-07-22";
2023-02-14 09:27:37 +00:00
src = pkgs.fetchFromGitHub {
owner = "zedeus";
repo = "nitter";
2023-07-23 16:21:08 +00:00
rev = "72d8f35cd1ec1205824711a41dab4b8d7a6b298a";
sha256 = "04q371r487zm97nm0nxm0wydhdy0jd0n91w6ykl3wqax2q1z6a0j";
2023-02-14 09:27:37 +00:00
};
}
)