3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/web-apps/rss-bridge/default.nix

34 lines
1.1 KiB
Nix
Raw Normal View History

2021-05-07 13:27:09 +01:00
{ stdenv, lib, fetchFromGitHub }:
2020-08-13 18:49:28 +01:00
stdenv.mkDerivation rec {
pname = "rss-bridge";
2022-01-25 23:19:55 +00:00
version = "2022-01-20";
2020-08-13 18:49:28 +01:00
src = fetchFromGitHub {
owner = "RSS-Bridge";
repo = "rss-bridge";
rev = version;
2022-01-25 23:19:55 +00:00
sha256 = "sha256-wQW6U24TMnRxQ9zxdq8cMzO0OGX/re065YDhl1AbwO8=";
2020-08-13 18:49:28 +01:00
};
2021-05-07 13:27:09 +01:00
postPatch = ''
2020-08-13 18:49:28 +01:00
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;
};
}