1
0
Fork 0

Add updated nitter package

This commit is contained in:
Daniel Kempkens 2023-02-14 10:27:37 +01:00
parent 735c05d7b8
commit ea23f9b862
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
3 changed files with 16 additions and 0 deletions

View file

@ -8,6 +8,7 @@ in
inherit (custom) cliclick;
inherit (custom) fennel-ls;
inherit (custom) luarocks-jsregexp;
inherit (custom) nitter-unstable;
inherit (custom) phantomjs;
inherit (custom) q;
inherit (custom) website-docs-nifoc-pw;

View file

@ -5,6 +5,7 @@
cliclick = import ./packages/cliclick.nix { inherit system lib pkgs; };
fennel-ls = import ./packages/fennel-ls.nix { inherit system lib pkgs; };
luarocks-jsregexp = import ./packages/luarocks-jsregexp.nix { inherit system lib pkgs; };
nitter-unstable = import ./packages/nitter-unstable.nix { inherit system lib pkgs; };
phantomjs = import ./packages/phantomjs.nix { inherit system lib pkgs; };
q = import ./packages/q.nix { inherit system lib pkgs; };
website-docs-nifoc-pw = import ./packages/website-docs-nifoc-pw.nix { inherit system lib pkgs; };

View file

@ -0,0 +1,14 @@
{ system, lib, pkgs }:
pkgs.nitter.overrideAttrs (
_: {
version = "unstable-2023-02-02";
src = pkgs.fetchFromGitHub {
owner = "zedeus";
repo = "nitter";
rev = "36c72f98603e6387431224b3fb65ada765e9ab65";
hash = "sha256-xKGfxr3GG9CiCCIq3EBeNcebOMTmeekYWJk0OhMKAxU=";
};
}
)