Skip to content

Commit 3d98784

Browse files
committed
sdl3-ttf: fix update script
The update script otherwise sets version string to `release-3.x.x`, which is wrong.
1 parent ea3daf0 commit 3d98784

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pkgs/by-name/sd/sdl3-ttf/package.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,12 @@ stdenv.mkDerivation (finalAttrs: {
4949
];
5050

5151
passthru = {
52-
updateScript = nix-update-script { };
52+
updateScript = nix-update-script {
53+
extraArgs = [
54+
"--version-regex"
55+
"release-(3\\..*)"
56+
];
57+
};
5358
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
5459
};
5560

0 commit comments

Comments
 (0)