tt-rss-plugin-data-migration: init at unstable-2023-11-01 (#370519)
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user