nixpkgs/pkgs/development/libraries/liblcf/default.nix
R. RyanTM a0a885c5cd liblcf: 0.5.3 -> 0.5.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/liblcf/versions
2018-11-15 22:10:22 +01:00

25 lines
688 B
Nix

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