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";
|
2024-02-04 22:37:45 +00:00
|
|
|
version = "2024-02-02";
|
2020-08-13 18:49:28 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "RSS-Bridge";
|
|
|
|
repo = "rss-bridge";
|
2020-11-01 22:39:49 +00:00
|
|
|
rev = version;
|
2024-02-04 22:37:45 +00:00
|
|
|
sha256 = "sha256-VycEgu7uHYwDnNE1eoVxgaWZAnC6mZLBxT8Le3PI4Rs=";
|
2020-08-13 18:49:28 +01:00
|
|
|
};
|
|
|
|
|
2023-10-16 20:19:03 +01:00
|
|
|
patches = [
|
|
|
|
./paths.patch
|
|
|
|
];
|
2020-08-13 18:49:28 +01:00
|
|
|
|
|
|
|
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;
|
2023-10-22 21:01:22 +01:00
|
|
|
maintainers = with maintainers; [ dawidsowa mynacol ];
|
2020-08-13 18:49:28 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|