mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
tt-rss-plugin-tumblr-gdpr: Init at 1.2 (#44620)
This commit is contained in:
parent
805bc58d08
commit
f9980af8ac
30
pkgs/servers/tt-rss/plugin-tumblr-gdpr/default.nix
Normal file
30
pkgs/servers/tt-rss/plugin-tumblr-gdpr/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user