9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
25 lines
682 B
Nix
25 lines
682 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, expat, icu }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "liblcf";
|
|
version = "0.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "EasyRPG";
|
|
repo = "liblcf";
|
|
rev = version;
|
|
sha256 = "0b0bz9ydpc98mxbg78bgf8kil85kxyqgkzxgsjq7awzmyw7f3c1c";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
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;
|
|
};
|
|
}
|