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-11 18:54:38 +00:00
version = "unstable-2023-03-06";
2023-02-14 09:27:37 +00:00
src = pkgs.fetchFromGitHub {
owner = "zedeus";
repo = "nitter";
2023-03-11 18:54:38 +00:00
rev = "bc219aa792cc0e4117888b2036a969559f4f2689";
hash = "sha256-xP4b0sRa+AY3658NDlAiyc11QAKI7RbvlUsd3rR0Yyo=";
2023-02-14 09:27:37 +00:00
};
}
)