tt-rss-plugin-tumblr-gdpr: 2.1 -> 2.2

fixes adding a new feed to ttrss.
the release only contains the fix, so it's low risk.
It's not a backport because the plugin has become unnecessary so we are
simply removing it from unstable.
This commit is contained in:
Guillaume Girol 2021-06-08 12:00:00 +00:00
parent cedcf2565c
commit c5811ce005

View File

@ -2,19 +2,22 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "tt-rss-plugin-tumblr-gdpr"; pname = "tt-rss-plugin-tumblr-gdpr";
version = "2.1"; version = "2.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "GregThib"; owner = "GregThib";
repo = "ttrss-tumblr-gdpr"; repo = "ttrss-tumblr-gdpr";
rev = "v${version}"; rev = "v${version}";
sha256 = "09cbghi5b6ww4i5677i39qc9rhpq70xmygp0d7x30239r3i23rpq"; sha256 = "sha256-oCdpgfOvXNui2KaS48WeyVy8Of6IlPOxQR6gmPiyH0s=";
}; };
installPhase = '' installPhase = ''
mkdir -p $out/tumblr_gdpr runHook preInstall
mkdir -p $out/tumblr_gdpr
cp init.php $out/tumblr_gdpr cp init.php $out/tumblr_gdpr
runHook postInstall
''; '';
meta = with lib; { meta = with lib; {
@ -24,7 +27,7 @@ stdenv.mkDerivation rec {
The name of the plugin in TT-RSS is 'tumblr_gdpr'. The name of the plugin in TT-RSS is 'tumblr_gdpr'.
''; '';
license = licenses.gpl3; license = licenses.gpl3Only;
homepage = "https://github.com/GregThib/ttrss-tumblr-gdpr"; homepage = "https://github.com/GregThib/ttrss-tumblr-gdpr";
maintainers = with maintainers; [ das_j ]; maintainers = with maintainers; [ das_j ];
platforms = platforms.all; platforms = platforms.all;