Unverified Commit 3d98784f authored by Grimmauld's avatar Grimmauld
Browse files

sdl3-ttf: fix update script

The update script otherwise sets version string to `release-3.x.x`, which is wrong.
parent ea3daf07
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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;
  };