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";