From a8e20b88134585e74d8f7bce1f817a982593af59 Mon Sep 17 00:00:00 2001 From: Amelia Aronsohn Date: Fri, 9 Jan 2026 21:48:20 -0800 Subject: [PATCH] tintin: 2.02.51 -> 2.02.60 changelog: https://github.com/scandum/tintin/blob/2.02.60/mods/igr.mods PCRE -> PCRE2 dependency updated per changelog --- pkgs/by-name/ti/tintin/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ti/tintin/package.nix b/pkgs/by-name/ti/tintin/package.nix index e2fcb3546cdd..a7203c96449d 100644 --- a/pkgs/by-name/ti/tintin/package.nix +++ b/pkgs/by-name/ti/tintin/package.nix @@ -3,24 +3,24 @@ fetchFromGitHub, lib, zlib, - pcre, + pcre2, gnutls, }: stdenv.mkDerivation rec { pname = "tintin"; - version = "2.02.51"; + version = "2.02.60"; src = fetchFromGitHub { owner = "scandum"; repo = "tintin"; rev = version; - hash = "sha256-QU9Q2VbJ44NHm//LTwDoHQIUV/LnLM94I7GtoCxL3js="; + hash = "sha256-2pkQv3Tf0cT0P7x1eiQYYlDYr9kA5F4DQxb8muJFX6Y="; }; buildInputs = [ zlib - pcre + pcre2 gnutls ];