2021-01-22 00:00:13 +07: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";
|
2020-05-02 14:57:37 +00:00
|
|
|
version = "0.6.2";
|
2017-12-25 02:27:51 +00:00
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "EasyRPG";
|
|
|
|
|
repo = "liblcf";
|
|
|
|
|
rev = version;
|
2020-05-02 14:57:37 +00:00
|
|
|
sha256 = "0b0bz9ydpc98mxbg78bgf8kil85kxyqgkzxgsjq7awzmyw7f3c1c";
|
2017-12-25 02:27:51 +00:00
|
|
|
};
|
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2018-11-09 11:47:21 -08:00
|
|
|
propagatedBuildInputs = [ expat icu ];
|
2017-12-25 02:27:51 +00:00
|
|
|
|
2021-01-22 00:00:13 +07:00
|
|
|
meta = with lib; {
|
2018-11-09 11:47:21 -08:00
|
|
|
description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/EasyRPG/liblcf";
|
2017-12-25 02:27:51 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
|
maintainers = with maintainers; [ yegortimoshenko ];
|
2021-03-12 01:04:59 +07:00
|
|
|
platforms = platforms.all;
|
2017-12-25 02:27:51 +00:00
|
|
|
};
|
|
|
|
|
}
|