Compare commits

..

No commits in common. "cd1bf069bbfeaa16e0f4ec86fd9625f77aa3ff82" and "5a10ff745117eef67046935f9eb3f7d4e10d20a9" have entirely different histories.

3 changed files with 6 additions and 24 deletions

View file

@ -1,26 +1,8 @@
{
inputs,
constants,
pkgs,
...
}:
{ inputs, constants, ... }:
{
imports = [ inputs.synix.nixosModules.rss-bridge ];
services.phpfpm.pools.rss-bridge = {
phpPackage = pkgs.php.withExtensions (
{ enabled, all }:
enabled
++ [
all.curl
all.mbstring
all.simplexml
all.intl
]
);
};
services.rss-bridge = {
enable = true;
reverseProxy = {

View file

@ -12,7 +12,7 @@
final: prev:
let
files = [
./rss-bridge.nix
# ./rss-bridge.nix
];
imports = builtins.map (f: import f final prev) files;
in

View file

@ -1,11 +1,11 @@
final: prev: {
rss-bridge = prev.rss-bridge.overrideAttrs (oldAttrs: {
version = "unstable-2026-04-30";
rss-bridge = prev.rss-bridge.overrideAttrs (oldAttrs: rec {
version = "2025-06-03";
src = prev.fetchFromGitHub {
owner = "RSS-Bridge";
repo = "rss-bridge";
rev = "ac2608a3c4172386996a54121fafa2d0d9b80fb5";
sha256 = "sha256-7Be701tkowl3hXpA4H6Epollf015qtPodPVpjWUwhZM=";
rev = version;
sha256 = "sha256-S9TSTUwuScOcLbEpGgET1zzH1WlO1IMUOiwzMTsA65s=";
};
});
}