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

25 lines
680 B
Nix
Raw Normal View History

2017-12-25 02:27:51 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, expat, icu }:
stdenv.mkDerivation rec {
pname = "liblcf";
version = "0.6.1";
2017-12-25 02:27:51 +00:00
src = fetchFromGitHub {
owner = "EasyRPG";
repo = "liblcf";
rev = version;
sha256 = "18kx9h004bncyi0hbj6vrc7f4k8l1rwp96cwncv3xm0lwspj0vyl";
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";
homepage = "https://github.com/EasyRPG/liblcf";
2017-12-25 02:27:51 +00:00
license = licenses.mit;
maintainers = with maintainers; [ yegortimoshenko ];
platforms = platforms.linux;
};
}