libwps: 0.4.2 -> 0.4.3

+4 -5
+4 -5
pkgs/development/libraries/libwps/default.nix
··· 1 1 { stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }: 2 2 3 - let version = "0.4.2"; in 4 3 stdenv.mkDerivation rec { 5 4 name = "libwps-${version}"; 5 + version = "0.4.3"; 6 6 7 7 src = fetchurl { 8 - url = "mirror://sourceforge/libwps/${name}.tar.gz"; 9 - sha256 = "0c90i3zafxxsj989bd9bs577blx3mrb90rj52iv6ijc4qivi4wkr"; 8 + url = "mirror://sourceforge/libwps/${name}.tar.bz2"; 9 + sha256 = "0v1a0hj96i4jhb5833336s4zcslzb6md5cnmnrvgywx8cmw40c0c"; 10 10 }; 11 11 12 12 buildInputs = [ boost pkgconfig librevenge zlib ]; 13 13 14 14 meta = with stdenv.lib; { 15 - inherit version; 16 15 homepage = http://libwps.sourceforge.net/; 17 - description = "Microsoft Works file word processor format import filter library"; 16 + description = "Microsoft Works document format import filter library"; 18 17 platforms = platforms.linux; 19 18 license = licenses.lgpl21; 20 19 };