nixpkgs/pkgs/tools/misc/twspace-crawler/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
797 B
Nix
Raw Normal View History

2023-01-28 04:20:00 +00:00
{ lib, buildNpmPackage, fetchFromGitHub }:
buildNpmPackage rec {
pname = "twspace-crawler";
version = "1.12.9";
2023-01-28 04:20:00 +00:00
src = fetchFromGitHub {
owner = "HitomaruKonpaku";
repo = "twspace-crawler";
rev = "7875e534b257d4ba5a0cf8179a4772c87005fee6"; # version not tagged
hash = "sha256-pA31ak0Rwy4Rc1fVz+4QV1lcTYGUmPOd61FtLQGN1ek=";
2023-01-28 04:20:00 +00:00
};
npmDepsHash = "sha256-2fsYeSZYzadLmikUJbuHE4XMAp38jTZvtRo9xgaZVzg=";
2023-01-28 04:20:00 +00:00
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/blob/${src.rev}/CHANGELOG.md";
2023-01-28 04:20:00 +00:00
license = licenses.isc;
maintainers = [ maintainers.marsam ];
2023-11-27 01:17:53 +00:00
mainProgram = "twspace-crawler";
2023-01-28 04:20:00 +00:00
};
}