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