Merge pull request #53766 from dasJ/tt-rss-instagram

tt-rss-plugin-ff-instagram: Init at git-2019-01-10
This commit is contained in:
Ryan Mulligan 2019-02-17 21:19:15 -08:00 committed by GitHub
commit 1849a783ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, ... }: stdenv.mkDerivation rec {
name = "tt-rss-plugin-ff-instagram-${version}";
version = "git-2019-01-10"; # No release, see https://github.com/wltb/ff_instagram/issues/6
src = fetchFromGitHub {
owner = "wltb";
repo = "ff_instagram";
rev = "0366ffb18c4d490c8fbfba2f5f3367a5af23cfe8";
sha256 = "0vvzl6wi6jmrqknsfddvckjgsgfizz1d923d1nyrpzjfn6bda1vk";
};
installPhase = ''
mkdir -p $out/ff_instagram
cp *.php $out/ff_instagram
'';
meta = with stdenv.lib; {
description = "Plugin for Tiny Tiny RSS that allows to fetch posts from Instagram user sites";
longDescription = ''
Plugin for Tiny Tiny RSS that allows to fetch posts from Instagram user sites.
The name of the plugin in TT-RSS is 'ff_instagram'.
'';
license = licenses.agpl3;
homepage = "https://github.com/wltb/ff_instagram";
maintainers = with maintainers; [ das_j ];
platforms = platforms.all;
};
}

View File

@ -14126,6 +14126,7 @@ in
torque = callPackage ../servers/computing/torque { };
tt-rss = callPackage ../servers/tt-rss { };
tt-rss-plugin-ff-instagram = callPackage ../servers/tt-rss/plugin-ff-instagram { };
tt-rss-plugin-tumblr-gdpr = callPackage ../servers/tt-rss/plugin-tumblr-gdpr { };
tt-rss-plugin-auth-ldap = callPackage ../servers/tt-rss/plugin-auth-ldap { };
tt-rss-theme-feedly = callPackage ../servers/tt-rss/theme-feedly { };