liblcf: 0.8 -> 0.8.1

Diff: https://github.com/EasyRPG/liblcf/compare/0.8...0.8.1
Short release notes: https://github.com/EasyRPG/liblcf/releases/tag/0.8.1
Full release notes: https://blog.easyrpg.org/2025/04/easyrpg-player-0-8-1-stun/

I also added passthru.updateScript.

+10 -3
+10 -3
pkgs/by-name/li/liblcf/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 + nix-update-script, 5 6 autoreconfHook, 6 7 pkg-config, 7 8 expat, 8 9 icu74, 10 + inih, 9 11 }: 10 12 11 13 stdenv.mkDerivation rec { 12 14 pname = "liblcf"; 13 - version = "0.8"; 15 + # When updating this package, you should probably also update 16 + # easyrpg-player and libretro.easyrpg 17 + version = "0.8.1"; 14 18 15 19 src = fetchFromGitHub { 16 20 owner = "EasyRPG"; 17 21 repo = "liblcf"; 18 22 rev = version; 19 - hash = "sha256-jJGIsNw7wplTL5FBWGL8osb9255o9ZaWgl77R+RLDMM="; 23 + hash = "sha256-jIk55+n8wSk3Z3FPR18SE7U3OuWwmp2zJgvSZQBB2l0="; 20 24 }; 21 25 22 - dtrictDeps = true; 26 + strictDeps = true; 23 27 24 28 nativeBuildInputs = [ 25 29 autoreconfHook ··· 29 33 propagatedBuildInputs = [ 30 34 expat 31 35 icu74 36 + inih 32 37 ]; 33 38 34 39 enableParallelBuilding = true; 35 40 enableParallelChecking = true; 36 41 37 42 doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; 43 + 44 + passthru.updateScript = nix-update-script { }; 38 45 39 46 meta = with lib; { 40 47 description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects";