liblcf: 0.7.0 -> 0.8

This commit is contained in:
OPNA2608 2023-07-08 10:03:26 +02:00
parent 67a8237b04
commit 41b8228d5d

View file

@ -1,19 +1,39 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, expat, icu }: { lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, expat
, icu
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "liblcf"; pname = "liblcf";
version = "0.7.0"; version = "0.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "EasyRPG"; owner = "EasyRPG";
repo = "liblcf"; repo = "liblcf";
rev = version; rev = version;
sha256 = "sha256-69cYZ8hJ92gK39gueaEoUM0K7BDWIQ/0NvcQ/6e3Sg8="; hash = "sha256-jJGIsNw7wplTL5FBWGL8osb9255o9ZaWgl77R+RLDMM=";
}; };
nativeBuildInputs = [ autoreconfHook pkg-config ]; dtrictDeps = true;
propagatedBuildInputs = [ expat icu ];
nativeBuildInputs = [
autoreconfHook
pkg-config
];
propagatedBuildInputs = [
expat
icu
];
enableParallelBuilding = true; enableParallelBuilding = true;
enableParallelChecking = true;
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
meta = with lib; { meta = with lib; {
description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects"; description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects";