tt-rss-plugin-data-migration: init at unstable-2023-11-01 (#370519)

This commit is contained in:
Lin Jian
2025-02-04 11:25:09 +08:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
+6
View File
@@ -25076,6 +25076,12 @@
githubId = 6162814;
keys = [ { fingerprint = "21E1 6B8D 2EE8 7530 6A6C 9968 D830 77B9 9F8C 6643"; } ];
};
wrvsrx = {
name = "wrvsrx";
email = "wrvsrx@outlook.com";
github = "wrvsrx";
githubId = 42770726;
};
wscott = {
email = "wsc9tt@gmail.com";
github = "wscott";
@@ -0,0 +1,33 @@
{
lib,
stdenv,
fetchgit,
}:
stdenv.mkDerivation {
pname = "tt-rss-plugin-data-migration";
version = "0-unstable-2023-11-01";
src = fetchgit {
url = "https://git.tt-rss.org/fox/ttrss-data-migration.git";
rev = "e13d5f97b4887ce7b57b3d76228d838dec15963d";
hash = "sha256-xnbR5IQ0h7ilxchNj55ROZdq1L7MIAwv3/00k09WTTs=";
};
installPhase = ''
runHook preInstall
install -D init.php $out/data_migration/init.php
runHook postInstall
'';
meta = {
description = "Plugin for TT-RSS to exports and imports *all* articles of a specific user via neutral format (JSON files in a ZIP archive)";
# this plugin doesn't have a license file
license = lib.licenses.unfree;
homepage = "https://git.tt-rss.org/fox/ttrss-data-migration.git/";
maintainers = with lib.maintainers; [ wrvsrx ];
platforms = lib.platforms.all;
};
}