pretalx: fix typo in schedule-editor pname; nixos/pretalx: use finalPackage consistently (#467830)

This commit is contained in:
Martin Weinelt
2025-12-04 14:14:32 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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";