a10675f43d
* liblcf: 0.6.2 -> 0.7.0 (#144396) * liblcf: build in parallel * easyrpg-player: 0.6.2.3 -> 0.7.0 Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
26 lines
699 B
Nix
26 lines
699 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, expat, icu }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "liblcf";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "EasyRPG";
|
|
repo = "liblcf";
|
|
rev = version;
|
|
sha256 = "sha256-69cYZ8hJ92gK39gueaEoUM0K7BDWIQ/0NvcQ/6e3Sg8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
propagatedBuildInputs = [ expat icu ];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects";
|
|
homepage = "https://github.com/EasyRPG/liblcf";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ yana ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|