Unverified Commit 95a09348 authored by Donovan Glover's avatar Donovan Glover Committed by GitHub
Browse files

sdl3: 3.2.2 -> 3.2.6, fix version regex (#383127)

parents 036500eb 19e55f18
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ assert lib.assertMsg (

stdenv.mkDerivation (finalAttrs: {
  pname = "sdl3";
  version = "3.2.2";
  version = "3.2.6";

  outputs = [
    "lib"
@@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: {
    owner = "libsdl-org";
    repo = "SDL";
    tag = "release-${finalAttrs.version}";
    hash = "sha256-AbEwpIxgYl3g4calnWca8Vz/Tw1DnYfZrD1Vl5cSMpk=";
    hash = "sha256-SEL/JIenmueYayxZlWlMO3lTUOcqiaZZC6RJbbH4DmE=";
  };

  postPatch =
@@ -224,7 +224,7 @@ stdenv.mkDerivation (finalAttrs: {
    updateScript = nix-update-script {
      extraArgs = [
        "--version-regex"
        "'release-(.*)'"
        "release-(3\\..*)"
      ];
    };
  };