tt-rss-plugin-tumblr-gdpr: Init at 1.2 (#44620)

This commit is contained in:
Janne Heß 2018-08-07 21:36:15 +02:00 committed by xeji
parent 805bc58d08
commit f9980af8ac
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, ... }: stdenv.mkDerivation rec {
name = "tt-rss-plugin-tumblr-gdpr-${version}";
version = "1.2";
src = fetchFromGitHub {
owner = "GregThib";
repo = "ttrss-tumblr-gdpr";
rev = "v${version}";
sha256 = "1qqnzysg1d0b169kr9fbgi50yjnvw7lrvgrl2zjx6px6z61jhv4j";
};
installPhase = ''
mkdir -p $out/tumblr_gdpr
cp init.php $out/tumblr_gdpr
'';
meta = with stdenv.lib; {
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;
homepage = https://github.com/GregThib/ttrss-tumblr-gdpr;
maintainers = with maintainers; [ das_j ];
platforms = platforms.all;
};
}

View file

@ -13347,6 +13347,7 @@ with pkgs;
torque = callPackage ../servers/computing/torque { };
tt-rss = callPackage ../servers/tt-rss { };
tt-rss-plugin-tumblr-gdpr = callPackage ../servers/tt-rss/plugin-tumblr-gdpr { };
searx = callPackage ../servers/web-apps/searx { };