lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

tt-rss-plugin-freshapi: init at unstable-2024-11-14

wrvsrx 1f067869 eef5f3d0

+35
+35
pkgs/by-name/tt/tt-rss-plugin-freshapi/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + }: 6 + 7 + stdenv.mkDerivation { 8 + pname = "tt-rss-plugin-freshapi"; 9 + version = "0-unstable-2024-11-14"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "eric-pierce"; 13 + repo = "freshapi"; 14 + rev = "44c98f12e8a4423501fc6d8cb7903cca11094dc6"; 15 + hash = "sha256-1cQ4QMrXOdtelAbmMEuhWJPFi5XrAoR3IGlFzb8122k="; 16 + }; 17 + 18 + installPhase = '' 19 + runHook preInstall 20 + 21 + install -D init.php $out/freshapi/init.php 22 + install -D api/greader.php $out/freshapi/api/greader.php 23 + install -D api/freshapi.php $out/freshapi/api/freshapi.php 24 + 25 + runHook postInstall 26 + ''; 27 + 28 + meta = { 29 + description = "FreshRSS / Google Reader API Plugin for Tiny-Tiny RSS"; 30 + license = lib.licenses.agpl3Only; 31 + homepage = "https://github.com/eric-pierce/freshapi"; 32 + maintainers = with lib.maintainers; [ wrvsrx ]; 33 + platforms = lib.platforms.all; 34 + }; 35 + }