about summary refs log tree commit diff
path: root/pkgs/development/libraries/liblcf
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-01-02 10:54:30 -0800
committerGitHub <noreply@github.com>2022-01-02 19:54:30 +0100
commita10675f43deb7cc41b69829d6f3290b0506618f6 (patch)
treed17043c760d9bce71d4b76a2b96f182005927f48 /pkgs/development/libraries/liblcf
parentf98766993dd608a0169b80507263398353fea12b (diff)
liblcf, easyrpg-player: 0.6.2 -> 0.7.0
* liblcf: 0.6.2 -> 0.7.0 (#144396)

* liblcf: build in parallel

* easyrpg-player: 0.6.2.3 -> 0.7.0

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
Diffstat (limited to 'pkgs/development/libraries/liblcf')
-rw-r--r--pkgs/development/libraries/liblcf/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/liblcf/default.nix b/pkgs/development/libraries/liblcf/default.nix
index 50c41982450f9..45bb7f5b60edc 100644
--- a/pkgs/development/libraries/liblcf/default.nix
+++ b/pkgs/development/libraries/liblcf/default.nix
@@ -2,17 +2,18 @@
 
 stdenv.mkDerivation rec {
   pname = "liblcf";
-  version = "0.6.2";
+  version = "0.7.0";
 
   src = fetchFromGitHub {
     owner = "EasyRPG";
     repo = "liblcf";
     rev = version;
-    sha256 = "0b0bz9ydpc98mxbg78bgf8kil85kxyqgkzxgsjq7awzmyw7f3c1c";
+    sha256 = "sha256-69cYZ8hJ92gK39gueaEoUM0K7BDWIQ/0NvcQ/6e3Sg8=";
   };
 
   nativeBuildInputs = [ autoreconfHook pkg-config ];
   propagatedBuildInputs = [ expat icu ];
+  enableParallelBuilding = true;
 
   meta = with lib; {
     description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects";