liblcf: init at 0.5.3

This commit is contained in:
Yegor Timoshenko 2017-12-25 02:27:51 +00:00
parent 4be298bf6d
commit 1c58e91a40
No known key found for this signature in database
GPG Key ID: C34BF9DCC9DF8210
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, expat, icu }:
stdenv.mkDerivation rec {
name = "liblcf-${version}";
version = "0.5.3";
src = fetchFromGitHub {
owner = "EasyRPG";
repo = "liblcf";
rev = version;
sha256 = "1y3pbl3jxan9f0cb1rxkibqjc0h23jm3jlwlv0xxn2pgw8l0fk34";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ expat icu ];
meta = with stdenv.lib; {
homepage = https://github.com/EasyRPG/liblcf;
license = licenses.mit;
maintainers = with maintainers; [ yegortimoshenko ];
platforms = platforms.linux;
};
}

View File

@ -9415,6 +9415,8 @@ with pkgs;
liblastfm = callPackage ../development/libraries/liblastfm { };
liblcf = callPackage ../development/libraries/liblcf { };
liblqr1 = callPackage ../development/libraries/liblqr-1 { };
liblockfile = callPackage ../development/libraries/liblockfile { };