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.
This commit is contained in:
Michael Daniels
2025-06-11 15:48:56 -04:00
parent 30c462142b
commit 6094996ee9
+10 -3
View File
@@ -2,24 +2,28 @@
lib,
stdenv,
fetchFromGitHub,
nix-update-script,
autoreconfHook,
pkg-config,
expat,
icu74,
inih,
}:
stdenv.mkDerivation rec {
pname = "liblcf";
version = "0.8";
# When updating this package, you should probably also update
# easyrpg-player and libretro.easyrpg
version = "0.8.1";
src = fetchFromGitHub {
owner = "EasyRPG";
repo = "liblcf";
rev = version;
hash = "sha256-jJGIsNw7wplTL5FBWGL8osb9255o9ZaWgl77R+RLDMM=";
hash = "sha256-jIk55+n8wSk3Z3FPR18SE7U3OuWwmp2zJgvSZQBB2l0=";
};
dtrictDeps = true;
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
@@ -29,6 +33,7 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [
expat
icu74
inih
];
enableParallelBuilding = true;
@@ -36,6 +41,8 @@ stdenv.mkDerivation rec {
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects";
homepage = "https://github.com/EasyRPG/liblcf";