aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/tt-rss
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2018-08-07 21:36:15 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-08-07 21:36:15 +0200
commitf9980af8ac82708d141461425fc1e3d469c64b6e (patch)
tree4fe4514f13628d42aae8d77ef6579b773233dd82 /pkgs/servers/tt-rss
parent805bc58d081eaabfbbf1bca6bc95a5a9526e65d9 (diff)
tt-rss-plugin-tumblr-gdpr: Init at 1.2 (#44620)
Diffstat (limited to 'pkgs/servers/tt-rss')
-rw-r--r--pkgs/servers/tt-rss/plugin-tumblr-gdpr/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/servers/tt-rss/plugin-tumblr-gdpr/default.nix b/pkgs/servers/tt-rss/plugin-tumblr-gdpr/default.nix
new file mode 100644
index 000000000000..88ce2d5c3d08
--- /dev/null
+++ b/pkgs/servers/tt-rss/plugin-tumblr-gdpr/default.nix
@@ -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;
+ };
+}