about summary refs log tree commit diff
path: root/pkgs/development/libraries/liblcf
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-11-09 11:47:21 -0800
committerc0bw3b <c0bw3b@users.noreply.github.com>2018-11-15 22:10:22 +0100
commita0a885c5cd1733458e74ae3256aa5d28d85b67bd (patch)
tree95289074f0d3f96791c2b3cfcf4ecfdc20178313 /pkgs/development/libraries/liblcf
parent67dafdb271017f6013f4ddcd7b52f8ba697dca60 (diff)
liblcf: 0.5.3 -> 0.5.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/liblcf/versions
Diffstat (limited to 'pkgs/development/libraries/liblcf')
-rw-r--r--pkgs/development/libraries/liblcf/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/liblcf/default.nix b/pkgs/development/libraries/liblcf/default.nix
index 95b6b657fa2be..8154a74aef5df 100644
--- a/pkgs/development/libraries/liblcf/default.nix
+++ b/pkgs/development/libraries/liblcf/default.nix
@@ -2,19 +2,20 @@
 
 stdenv.mkDerivation rec {
   name = "liblcf-${version}";
-  version = "0.5.3";
+  version = "0.5.4";
 
   src = fetchFromGitHub {
     owner = "EasyRPG";
     repo = "liblcf";
     rev = version;
-    sha256 = "1y3pbl3jxan9f0cb1rxkibqjc0h23jm3jlwlv0xxn2pgw8l0fk34";
+    sha256 = "1842hns0rbjncrhwjj7fzg9b3n47adn5jp4dg2zz34gfah3q4ig8";
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig ];
-  buildInputs = [ expat icu ];
+  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 ];