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
2 changed files with 31 additions and 0 deletions
@@ -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;
};
}