Merge pull request 'add rss-bridge overlay' (#58) from develop into master
All checks were successful
Deploy configs / deploy-configs (push) Successful in 24s
All checks were successful
Deploy configs / deploy-configs (push) Successful in 24s
Reviewed-on: #58
This commit is contained in:
commit
cd1bf069bb
3 changed files with 24 additions and 6 deletions
|
|
@ -1,8 +1,26 @@
|
||||||
{ inputs, constants, ... }:
|
{
|
||||||
|
inputs,
|
||||||
|
constants,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ inputs.synix.nixosModules.rss-bridge ];
|
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 = {
|
services.rss-bridge = {
|
||||||
enable = true;
|
enable = true;
|
||||||
reverseProxy = {
|
reverseProxy = {
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
final: prev:
|
final: prev:
|
||||||
let
|
let
|
||||||
files = [
|
files = [
|
||||||
# ./rss-bridge.nix
|
./rss-bridge.nix
|
||||||
];
|
];
|
||||||
imports = builtins.map (f: import f final prev) files;
|
imports = builtins.map (f: import f final prev) files;
|
||||||
in
|
in
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
final: prev: {
|
final: prev: {
|
||||||
rss-bridge = prev.rss-bridge.overrideAttrs (oldAttrs: rec {
|
rss-bridge = prev.rss-bridge.overrideAttrs (oldAttrs: {
|
||||||
version = "2025-06-03";
|
version = "unstable-2026-04-30";
|
||||||
src = prev.fetchFromGitHub {
|
src = prev.fetchFromGitHub {
|
||||||
owner = "RSS-Bridge";
|
owner = "RSS-Bridge";
|
||||||
repo = "rss-bridge";
|
repo = "rss-bridge";
|
||||||
rev = version;
|
rev = "ac2608a3c4172386996a54121fafa2d0d9b80fb5";
|
||||||
sha256 = "sha256-S9TSTUwuScOcLbEpGgET1zzH1WlO1IMUOiwzMTsA65s=";
|
sha256 = "sha256-7Be701tkowl3hXpA4H6Epollf015qtPodPVpjWUwhZM=";
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue