From 10c2866ccd61bedb9fe82f0a7f5284af91a301bd Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 15 Sep 2024 02:57:17 +0300 Subject: fix(tazjin/nixos): set rad.tazj.in as preferred seed in explorer This requires overriding build-time configuration, so I've added a little fixed point that takes care of that. Change-Id: Ie990e362c6e00aa6e3be66b04af4b62034b03515 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12489 Tested-by: BuildkiteCI Reviewed-by: tazjin Autosubmit: tazjin --- third_party/radicle-explorer/default.nix | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) (limited to 'third_party') diff --git a/third_party/radicle-explorer/default.nix b/third_party/radicle-explorer/default.nix index 7fe9539ddf74..0241eaef5d3e 100644 --- a/third_party/radicle-explorer/default.nix +++ b/third_party/radicle-explorer/default.nix @@ -2,7 +2,7 @@ # # They have an upstream Nix derivation, but it only works with experimental # features Nix and is quite messy, so this is a copy of the relevant parts. -{ pkgs, ... }: +{ lib, pkgs, ... }: let twemoji-assets = pkgs.fetchFromGitHub { @@ -14,7 +14,7 @@ let httpdSrc = pkgs.radicle-httpd.src; in -pkgs.buildNpmPackage rec { +lib.fix (self: pkgs.buildNpmPackage rec { pname = "radicle-explorer"; version = (builtins.fromJSON (builtins.readFile "${src}/package.json")).version; @@ -44,4 +44,19 @@ pkgs.buildNpmPackage rec { runHook postInstall ''; -} + # Override the build-time configuration with other preferred seeds which are + # displayed on the landing page. + passthru.withPreferredSeeds = seeds: + let + originalConfig = builtins.fromJSON (builtins.readFile "${src}/config/default.json"); + config = originalConfig // { + preferredSeeds = seeds; + }; + newConfig = pkgs.writeText "local.json" (builtins.toJSON config); + in + self.overrideAttrs (_: { + preBuild = '' + cp ${newConfig} config/local.json + ''; + }); +}) -- cgit 1.4.1