mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ stdenv, lib, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rss-bridge";
|
|
version = "2021-04-25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RSS-Bridge";
|
|
repo = "rss-bridge";
|
|
rev = version;
|
|
sha256 = "0dkw8xq710q0wclyr003357gk0vgb5pmpcx75k13pv56c3mrg9vm";
|
|
};
|
|
|
|
postPatch = ''
|
|
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;
|
|
};
|
|
}
|