twspace-crawler: init at 1.11.13

This commit is contained in:
Mario Rodas 2023-01-28 04:20:00 +00:00
parent 0ee931c4a9
commit 04e42353fc
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildNpmPackage, fetchFromGitHub }:
buildNpmPackage rec {
pname = "twspace-crawler";
version = "1.11.13";
src = fetchFromGitHub {
owner = "HitomaruKonpaku";
repo = "twspace-crawler";
rev = "v${version}";
hash = "sha256-MGFVIQDb++oVbTQubl7CNYwT/ofTNFQfFiveXcNgQpA=";
};
npmDepsHash = "sha256-zKy/DngBwnfUqG6JfCULoDIrg1V16hX0Q4zNz45z888=";
meta = with lib; {
description = "Script to monitor & download Twitter Spaces 24/7";
homepage = "https://github.com/HitomaruKonpaku/twspace-crawler";
changelog = "https://github.com/HitomaruKonpaku/twspace-crawler/raw/v${version}/CHANGELOG.md";
license = licenses.isc;
maintainers = [ maintainers.marsam ];
};
}

View file

@ -12696,6 +12696,8 @@ with pkgs;
twitterBootstrap = callPackage ../development/web/twitter-bootstrap {};
twspace-crawler = callPackage ../tools/misc/twspace-crawler { };
twspace-dl = callPackage ../tools/misc/twspace-dl { };
twtxt = python3Packages.callPackage ../applications/networking/twtxt { };