2021-01-25 09:26:54 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, ... }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "tt-rss-plugin-tumblr-gdpr";
|
2019-02-17 11:07:58 +01:00
|
|
|
version = "2.1";
|
2018-08-07 21:36:15 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "GregThib";
|
|
|
|
repo = "ttrss-tumblr-gdpr";
|
|
|
|
rev = "v${version}";
|
2019-02-17 11:07:58 +01:00
|
|
|
sha256 = "09cbghi5b6ww4i5677i39qc9rhpq70xmygp0d7x30239r3i23rpq";
|
2018-08-07 21:36:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/tumblr_gdpr
|
|
|
|
|
|
|
|
cp init.php $out/tumblr_gdpr
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-08-07 21:36:15 +02:00
|
|
|
description = "Plugin for TT-RSS to workaround GDPR in Europe";
|
|
|
|
longDescription = ''
|
|
|
|
Plugin for TT-RSS to workaround GDPR in Europe.
|
|
|
|
|
|
|
|
The name of the plugin in TT-RSS is 'tumblr_gdpr'.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl3;
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/GregThib/ttrss-tumblr-gdpr";
|
2018-08-07 21:36:15 +02:00
|
|
|
maintainers = with maintainers; [ das_j ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|