2023-07-08 08:03:26 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
autoreconfHook,
|
|
|
|
pkg-config,
|
|
|
|
expat,
|
|
|
|
icu,
|
|
|
|
}:
|
2017-12-25 02:27:51 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "liblcf";
|
2023-07-08 08:03:26 +00:00
|
|
|
version = "0.8";
|
2017-12-25 02:27:51 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "EasyRPG";
|
|
|
|
repo = "liblcf";
|
|
|
|
rev = version;
|
2023-07-08 08:03:26 +00:00
|
|
|
hash = "sha256-jJGIsNw7wplTL5FBWGL8osb9255o9ZaWgl77R+RLDMM=";
|
2017-12-25 02:27:51 +00:00
|
|
|
};
|
|
|
|
|
2023-07-08 08:03:26 +00:00
|
|
|
dtrictDeps = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
expat
|
|
|
|
icu
|
|
|
|
];
|
|
|
|
|
2022-01-02 18:54:30 +00:00
|
|
|
enableParallelBuilding = true;
|
2023-07-08 08:03:26 +00:00
|
|
|
enableParallelChecking = true;
|
|
|
|
|
|
|
|
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
2017-12-25 02:27:51 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-11-09 19:47:21 +00:00
|
|
|
description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/EasyRPG/liblcf";
|
2017-12-25 02:27:51 +00:00
|
|
|
license = licenses.mit;
|
2024-07-28 14:44:11 +00:00
|
|
|
maintainers = [ ];
|
2021-03-11 18:04:59 +00:00
|
|
|
platforms = platforms.all;
|
2017-12-25 02:27:51 +00:00
|
|
|
};
|
|
|
|
}
|