From 6094996ee9a0594434e4e25c725658df55bd371a Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Mon, 9 Jun 2025 12:13:13 -0400 Subject: [PATCH] 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. --- pkgs/by-name/li/liblcf/package.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/li/liblcf/package.nix b/pkgs/by-name/li/liblcf/package.nix index 71e4fb69a3b9..4b4fe0083864 100644 --- a/pkgs/by-name/li/liblcf/package.nix +++ b/pkgs/by-name/li/liblcf/package.nix @@ -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";