nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 19.03 24 lines 688 B view raw
1{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, expat, icu }: 2 3stdenv.mkDerivation rec { 4 name = "liblcf-${version}"; 5 version = "0.5.4"; 6 7 src = fetchFromGitHub { 8 owner = "EasyRPG"; 9 repo = "liblcf"; 10 rev = version; 11 sha256 = "1842hns0rbjncrhwjj7fzg9b3n47adn5jp4dg2zz34gfah3q4ig8"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 15 propagatedBuildInputs = [ expat icu ]; 16 17 meta = with stdenv.lib; { 18 description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects"; 19 homepage = https://github.com/EasyRPG/liblcf; 20 license = licenses.mit; 21 maintainers = with maintainers; [ yegortimoshenko ]; 22 platforms = platforms.linux; 23 }; 24}