about summary refs log tree commit diff
path: root/pkgs/development/libraries/libwps
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2016-05-24 22:25:02 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2016-05-25 02:06:47 +0200
commit823ec00fdf9cbde3da11f411789c20462d9055f5 (patch)
tree757ad4d7a60ef724a9983ef488465317cf62218d /pkgs/development/libraries/libwps
parent47950b53538471c1aff04b00790fadded7eca207 (diff)
libwps: 0.4.2 -> 0.4.3
Diffstat (limited to 'pkgs/development/libraries/libwps')
-rw-r--r--pkgs/development/libraries/libwps/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libwps/default.nix b/pkgs/development/libraries/libwps/default.nix
index 798284c3b89a7..b165631e23eb3 100644
--- a/pkgs/development/libraries/libwps/default.nix
+++ b/pkgs/development/libraries/libwps/default.nix
@@ -1,20 +1,19 @@
 { stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }:
 
-let version = "0.4.2"; in
 stdenv.mkDerivation rec {
   name = "libwps-${version}";
+  version = "0.4.3";
 
   src = fetchurl {
-    url = "mirror://sourceforge/libwps/${name}.tar.gz";
-    sha256 = "0c90i3zafxxsj989bd9bs577blx3mrb90rj52iv6ijc4qivi4wkr";
+    url = "mirror://sourceforge/libwps/${name}.tar.bz2";
+    sha256 = "0v1a0hj96i4jhb5833336s4zcslzb6md5cnmnrvgywx8cmw40c0c";
   };
 
   buildInputs = [ boost pkgconfig librevenge zlib ];
 
   meta = with stdenv.lib; {
-    inherit version;
     homepage = http://libwps.sourceforge.net/;
-    description = "Microsoft Works file word processor format import filter library";
+    description = "Microsoft Works document format import filter library";
     platforms = platforms.linux;
     license = licenses.lgpl21;
   };