Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / tt-rss / plugin-ff-instagram / default.nix
blob7ef093e3f70d6c4a2a6e3a6488bda3395493299b
1 { lib, stdenv, fetchFromGitHub, ... }:
3 stdenv.mkDerivation {
4   pname = "tt-rss-plugin-ff-instagram";
5   version = "unstable-2019-01-10"; # No release, see https://github.com/wltb/ff_instagram/issues/6
7   src = fetchFromGitHub {
8     owner = "wltb";
9     repo = "ff_instagram";
10     rev = "0366ffb18c4d490c8fbfba2f5f3367a5af23cfe8";
11     sha256 = "0vvzl6wi6jmrqknsfddvckjgsgfizz1d923d1nyrpzjfn6bda1vk";
12   };
14   installPhase = ''
15     mkdir -p $out/ff_instagram
17     cp *.php $out/ff_instagram
18   '';
20   meta = with lib; {
21     description = "Plugin for Tiny Tiny RSS that allows to fetch posts from Instagram user sites";
22     longDescription = ''
23       Plugin for Tiny Tiny RSS that allows to fetch posts from Instagram user sites.
25       The name of the plugin in TT-RSS is 'ff_instagram'.
26     '';
27     license = licenses.agpl3Plus;
28     homepage = "https://github.com/wltb/ff_instagram";
29     maintainers = with maintainers; [ das_j ];
30     platforms = platforms.all;
31   };