From 37a27de2ddba31540359c2a7dfb1718ae8fd298b Mon Sep 17 00:00:00 2001 From: Sandro Date: Thu, 4 Dec 2025 14:34:37 +0100 Subject: [PATCH 1/2] pretalx: fix typo in schedule-editor pname --- pkgs/by-name/pr/pretalx/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/pr/pretalx/package.nix b/pkgs/by-name/pr/pretalx/package.nix index b78e67a40d51..d19876d38926 100644 --- a/pkgs/by-name/pr/pretalx/package.nix +++ b/pkgs/by-name/pr/pretalx/package.nix @@ -48,7 +48,7 @@ let }; pretix-schedule-editor = buildNpmPackage { - pname = "pretalx-schedule-editorc"; + pname = "pretalx-schedule-editor"; inherit version src; sourceRoot = "${src.name}/src/pretalx/frontend/schedule-editor"; From 90d82015ac2daee07d15c5b0dffe2825bf90f89d Mon Sep 17 00:00:00 2001 From: Sandro Date: Thu, 4 Dec 2025 14:39:08 +0100 Subject: [PATCH 2/2] nixos/pretalx: use finalPackage consistently (cherry picked from commit bb84dd09b3c7f1cd260c9c23b837032c722b43fa) --- nixos/modules/services/web-apps/pretalx.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/pretalx.nix b/nixos/modules/services/web-apps/pretalx.nix index 6ab037efb114..1fae59517aba 100644 --- a/nixos/modules/services/web-apps/pretalx.nix +++ b/nixos/modules/services/web-apps/pretalx.nix @@ -456,7 +456,7 @@ in preStart = let versionString = lib.concatStringsSep "\n" ( - [ "pretalx-${cfg.finalPackage.version}" ] + [ "pretalx-${finalPackage.version}" ] ++ map (plugin: "${plugin.pname}-${plugin.version}") cfg.plugins ); in