tt-rss-plugin-ff-instagram: Init at git-2019-01-10

This commit is contained in:
Janne Heß
2019-01-10 17:56:47 +01:00
parent 0e5c70eb76
commit 36d65c59fe
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;
};
}