summary refs log tree commit diff
path: root/pkgs/servers/tt-rss
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien+git@xlumurb.eu>2021-06-12 12:00:00 +0000
committerGuillaume Girol <symphorien+git@xlumurb.eu>2021-06-12 21:49:14 +0200
commita421a74be31c36ff85829e70a6621ab59fb98a18 (patch)
treeba7cbf0b0cd06e56ff7450b7456886a93adef4ea /pkgs/servers/tt-rss
parent432fc2d9a67f92e05438dff5fdc2b39d33f77997 (diff)
downloadnixpkgs-a421a74be31c36ff85829e70a6621ab59fb98a18.tar
nixpkgs-a421a74be31c36ff85829e70a6621ab59fb98a18.tar.gz
nixpkgs-a421a74be31c36ff85829e70a6621ab59fb98a18.tar.bz2
nixpkgs-a421a74be31c36ff85829e70a6621ab59fb98a18.tar.lz
nixpkgs-a421a74be31c36ff85829e70a6621ab59fb98a18.tar.xz
nixpkgs-a421a74be31c36ff85829e70a6621ab59fb98a18.tar.zst
nixpkgs-a421a74be31c36ff85829e70a6621ab59fb98a18.zip
tt-rss-plugin-tumblr-gdpr: remove
Diffstat (limited to 'pkgs/servers/tt-rss')
-rw-r--r--pkgs/servers/tt-rss/plugin-tumblr-gdpr/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/servers/tt-rss/plugin-tumblr-gdpr/default.nix b/pkgs/servers/tt-rss/plugin-tumblr-gdpr/default.nix
deleted file mode 100644
index 7df8b717593..00000000000
--- a/pkgs/servers/tt-rss/plugin-tumblr-gdpr/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, ... }:
-
-stdenv.mkDerivation rec {
-  pname = "tt-rss-plugin-tumblr-gdpr";
-  version = "2.1";
-
-  src = fetchFromGitHub {
-    owner = "GregThib";
-    repo = "ttrss-tumblr-gdpr";
-    rev = "v${version}";
-    sha256 = "09cbghi5b6ww4i5677i39qc9rhpq70xmygp0d7x30239r3i23rpq";
-  };
-
-  installPhase = ''
-    mkdir -p $out/tumblr_gdpr
-
-    cp init.php $out/tumblr_gdpr
-  '';
-
-  meta = with 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;
-  };
-}