Skip to content

Commit

Permalink
rss-bridge: init at 2020-02-26
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidsowa committed Aug 13, 2020
1 parent f26d770 commit ca64913
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/servers/web-apps/rss-bridge/default.nix
@@ -0,0 +1,33 @@
{ config, lib, pkgs, fetchFromGitHub, stdenv, ... }:

stdenv.mkDerivation rec {
pname = "rss-bridge";
version = "2020-02-26";

src = fetchFromGitHub {
owner = "RSS-Bridge";
repo = "rss-bridge";
rev = "${version}";
sha256 = "075k4bylx9308d083ry5a9q4629ccnrnndqqdqp1g42rzlqrw79q";
};

patchPhase = ''
substituteInPlace lib/rssbridge.php \
--replace "define('PATH_CACHE', PATH_ROOT . 'cache/');" "define('PATH_CACHE', getenv('RSSBRIDGE_DATA') . '/cache/');" \
--replace "define('FILE_CONFIG', PATH_ROOT . 'config.ini.php');" "define('FILE_CONFIG', getenv('RSSBRIDGE_DATA') . '/config.ini.php');" \
--replace "define('WHITELIST', PATH_ROOT . 'whitelist.txt');" "define('WHITELIST', getenv('RSSBRIDGE_DATA') . '/whitelist.txt');"
'';

installPhase = ''
mkdir $out/
cp -R ./* $out
'';

meta = with lib; {
description = "The RSS feed for websites missing it";
homepage = "https://github.com/RSS-Bridge/rss-bridge";
license = licenses.unlicense;
maintainers = with maintainers; [ dawidsowa ];
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -16474,6 +16474,8 @@ in
tt-rss-plugin-auth-ldap = callPackage ../servers/tt-rss/plugin-auth-ldap { };
tt-rss-theme-feedly = callPackage ../servers/tt-rss/theme-feedly { };

rss-bridge = callPackage ../servers/web-apps/rss-bridge { };

searx = callPackage ../servers/web-apps/searx { };

selfoss = callPackage ../servers/web-apps/selfoss { };
Expand Down

0 comments on commit ca64913

Please sign in to comment.