nixpkgs/pkgs/by-name/li/liblcf/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
830 B
Nix
Raw Normal View History

2023-07-08 08:03:26 +00:00
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
pkg-config,
expat,
icu,
}:
2017-12-25 02:27:51 +00:00
stdenv.mkDerivation rec {
pname = "liblcf";
2023-07-08 08:03:26 +00:00
version = "0.8";
2017-12-25 02:27:51 +00:00
src = fetchFromGitHub {
owner = "EasyRPG";
repo = "liblcf";
rev = version;
2023-07-08 08:03:26 +00:00
hash = "sha256-jJGIsNw7wplTL5FBWGL8osb9255o9ZaWgl77R+RLDMM=";
2017-12-25 02:27:51 +00:00
};
2023-07-08 08:03:26 +00:00
dtrictDeps = true;
nativeBuildInputs = [
autoreconfHook
pkg-config
];
propagatedBuildInputs = [
expat
icu
];
enableParallelBuilding = true;
2023-07-08 08:03:26 +00:00
enableParallelChecking = true;
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
2017-12-25 02:27:51 +00:00
meta = with 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 = [ ];
2021-03-11 18:04:59 +00:00
platforms = platforms.all;
2017-12-25 02:27:51 +00:00
};
}