liblcf: init at 0.5.3
This commit is contained in:
parent
4be298bf6d
commit
1c58e91a40
23
pkgs/development/libraries/liblcf/default.nix
Normal file
23
pkgs/development/libraries/liblcf/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user