sdl3-ttf: fix update script
The update script otherwise sets version string to `release-3.x.x`, which is wrong.
This commit is contained in:
@@ -49,7 +49,12 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
];
|
||||
|
||||
passthru = {
|
||||
updateScript = nix-update-script { };
|
||||
updateScript = nix-update-script {
|
||||
extraArgs = [
|
||||
"--version-regex"
|
||||
"release-(3\\..*)"
|
||||
];
|
||||
};
|
||||
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user