1{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, expat, icu }:
2
3stdenv.mkDerivation rec {
4 name = "liblcf-${version}";
5 version = "0.5.3";
6
7 src = fetchFromGitHub {
8 owner = "EasyRPG";
9 repo = "liblcf";
10 rev = version;
11 sha256 = "1y3pbl3jxan9f0cb1rxkibqjc0h23jm3jlwlv0xxn2pgw8l0fk34";
12 };
13
14 nativeBuildInputs = [ autoreconfHook pkgconfig ];
15 buildInputs = [ expat icu ];
16
17 meta = with stdenv.lib; {
18 homepage = https://github.com/EasyRPG/liblcf;
19 license = licenses.mit;
20 maintainers = with maintainers; [ yegortimoshenko ];
21 platforms = platforms.linux;
22 };
23}