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

15 lines
314 B
Nix
Raw Normal View History

2023-02-14 09:27:37 +00:00
{ system, lib, pkgs }:
pkgs.nitter.overrideAttrs (
_: {
2023-03-04 16:51:19 +00:00
version = "unstable-2023-03-04";
2023-02-14 09:27:37 +00:00
src = pkgs.fetchFromGitHub {
owner = "zedeus";
repo = "nitter";
2023-03-04 16:51:19 +00:00
rev = "725f601c9b006cd774024464caf4529068eb17a9";
hash = "sha256-S4Tyq4PbXDz5lpSFOIIB5pd6oEPkmxmuk3vcHGm0xZY=";
2023-02-14 09:27:37 +00:00
};
}
)