Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
802 B
Nix
43 lines
802 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rss-bridge";
|
|
version = "2025-08-05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RSS-Bridge";
|
|
repo = "rss-bridge";
|
|
rev = version;
|
|
sha256 = "sha256-SH5iYsdvGD51j+2xqaG51VDtb35m1v9MR0+yLE1eyWo=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir $out/
|
|
cp -R ./* $out
|
|
'';
|
|
|
|
passthru = {
|
|
tests = {
|
|
inherit (nixosTests.rss-bridge) caddy nginx;
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "RSS feed for websites missing it";
|
|
homepage = "https://github.com/RSS-Bridge/rss-bridge";
|
|
license = licenses.unlicense;
|
|
maintainers = with maintainers; [
|
|
dawidsowa
|
|
mynacol
|
|
];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|