summary refs log blame commit diff
path: root/pkgs/development/libraries/liblcf/default.nix
blob: 9870e024687c9762e141fd1121006a7f1c9db5c0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                                                   
                    




                         
                                                                    


                                                   
                                        

                           
                                                                               





                                                        
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, expat, icu }:

stdenv.mkDerivation rec {
  name = "liblcf-${version}";
  version = "0.6.1";

  src = fetchFromGitHub {
    owner = "EasyRPG";
    repo = "liblcf";
    rev = version;
    sha256 = "18kx9h004bncyi0hbj6vrc7f4k8l1rwp96cwncv3xm0lwspj0vyl";
  };

  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;
  };
}