nixpkgs/pkgs/development/libraries/liblcf/default.nix

25 lines
688 B
Nix
Raw Normal View History

2017-12-25 02:27:51 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, expat, icu }:
stdenv.mkDerivation rec {
name = "liblcf-${version}";
version = "0.5.4";
2017-12-25 02:27:51 +00:00
src = fetchFromGitHub {
owner = "EasyRPG";
repo = "liblcf";
rev = version;
sha256 = "1842hns0rbjncrhwjj7fzg9b3n47adn5jp4dg2zz34gfah3q4ig8";
2017-12-25 02:27:51 +00:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
propagatedBuildInputs = [ expat icu ];
2017-12-25 02:27:51 +00:00
meta = with stdenv.lib; {
description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects";
2017-12-25 02:27:51 +00:00
homepage = https://github.com/EasyRPG/liblcf;
license = licenses.mit;
maintainers = with maintainers; [ yegortimoshenko ];
platforms = platforms.linux;
};
}