
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.
54 lines
1.0 KiB
Nix
54 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
expat,
|
|
icu74,
|
|
inih,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "liblcf";
|
|
# 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-jIk55+n8wSk3Z3FPR18SE7U3OuWwmp2zJgvSZQBB2l0=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
expat
|
|
icu74
|
|
inih
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
enableParallelChecking = true;
|
|
|
|
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";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|