Add updated nitter package
This commit is contained in:
parent
735c05d7b8
commit
ea23f9b862
3 changed files with 16 additions and 0 deletions
|
@ -8,6 +8,7 @@ in
|
||||||
inherit (custom) cliclick;
|
inherit (custom) cliclick;
|
||||||
inherit (custom) fennel-ls;
|
inherit (custom) fennel-ls;
|
||||||
inherit (custom) luarocks-jsregexp;
|
inherit (custom) luarocks-jsregexp;
|
||||||
|
inherit (custom) nitter-unstable;
|
||||||
inherit (custom) phantomjs;
|
inherit (custom) phantomjs;
|
||||||
inherit (custom) q;
|
inherit (custom) q;
|
||||||
inherit (custom) website-docs-nifoc-pw;
|
inherit (custom) website-docs-nifoc-pw;
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
cliclick = import ./packages/cliclick.nix { inherit system lib pkgs; };
|
cliclick = import ./packages/cliclick.nix { inherit system lib pkgs; };
|
||||||
fennel-ls = import ./packages/fennel-ls.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; };
|
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; };
|
phantomjs = import ./packages/phantomjs.nix { inherit system lib pkgs; };
|
||||||
q = import ./packages/q.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; };
|
website-docs-nifoc-pw = import ./packages/website-docs-nifoc-pw.nix { inherit system lib pkgs; };
|
||||||
|
|
14
packages/nitter-unstable.nix
Normal file
14
packages/nitter-unstable.nix
Normal 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=";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
)
|
Loading…
Reference in a new issue