redlib: build from upstream main, nixpkgs build is TLS-blocked

This commit is contained in:
rope 2026-08-29 14:16:13 +01:00
parent f97d7ac829
commit ce18b829cb
3 changed files with 43 additions and 1 deletions

17
flake.lock generated
View file

@ -352,12 +352,29 @@
"type": "github" "type": "github"
} }
}, },
"redlib": {
"flake": false,
"locked": {
"lastModified": 1777052029,
"narHash": "sha256-siyD6A12UALQIV7BMd7zu1TaojleTEYtpxPszuhx1/Y=",
"owner": "redlib-org",
"repo": "redlib",
"rev": "a4d36e954cf1bd64f209cd8868c5a29edc81b374",
"type": "github"
},
"original": {
"owner": "redlib-org",
"repo": "redlib",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"nix-cachyos-kernel": "nix-cachyos-kernel", "nix-cachyos-kernel": "nix-cachyos-kernel",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"proton-cachyos-nix": "proton-cachyos-nix", "proton-cachyos-nix": "proton-cachyos-nix",
"redlib": "redlib",
"stylix": "stylix", "stylix": "stylix",
"zen-browser": "zen-browser" "zen-browser": "zen-browser"
} }

View file

@ -18,6 +18,13 @@
proton-cachyos-nix.url = "github:powerofthe69/proton-cachyos-nix"; proton-cachyos-nix.url = "github:powerofthe69/proton-cachyos-nix";
# Source only, not this flake's outputs: nixpkgs' redlib predates the wreq
# switch and Reddit 403s its rustls TLS fingerprint (see services/redlib.nix).
redlib = {
url = "github:redlib-org/redlib";
flake = false;
};
stylix.url = "github:nix-community/stylix/release-26.05"; stylix.url = "github:nix-community/stylix/release-26.05";
}; };
outputs = outputs =

View file

@ -1,11 +1,29 @@
# services/redlib.nix — Private Reddit front-end at reddit.nordhammer.it # services/redlib.nix — Private Reddit front-end at reddit.nordhammer.it
{ config, lib, ... }: { config, lib, inputs, pkgs, ... }:
{ {
config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") { config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") {
services.redlib = { services.redlib = {
enable = true; enable = true;
address = "127.0.0.1"; address = "127.0.0.1";
port = 8087; port = 8087;
# nixpkgs pins a Dec 2025 redlib that talks to Reddit over plain rustls.
# Reddit fingerprints TLS and 403s every oauth.reddit.com call from it —
# the token mints fine, then every API request fails. Upstream main
# switched to wreq with Chrome/Firefox fingerprint emulation. Its own
# flake is unusable (locked to Rust 1.82, older than wreq's edition2024),
# so take the source from the input and build it with nixpkgs' toolchain.
# Drop all of this once the wreq commit lands in the pinned channel.
package = pkgs.rustPlatform.buildRustPackage {
pname = "redlib";
version = "0.36.0-unstable-2026-04-24";
src = inputs.redlib;
cargoLock.lockFile = "${inputs.redlib}/Cargo.lock";
# boring-sys2 (wreq's TLS backend) builds BoringSSL from source
# git: boring-sys2 patches BoringSSL in place before building it
nativeBuildInputs = with pkgs; [ cmake perl go git rustPlatform.bindgenHook ];
doCheck = false; # upstream tests hit the live Reddit API
};
}; };
}; };
} }