3
0
Fork 0
forked from mirrors/nixpkgs

xmlrpc-c: update 1.25.25 -> 1.25.26

From http://xmlrpc-c.sourceforge.net/change_super_stable.html:

  Release 1.25.26, released September 29, 2013.

  Fix interpretation of dateTime.iso8601 variant with timezone
  information. As broken, it would add up to a second to the correct
  datetime or reject the message claiming that it has invalid syntax.
  Always broken (recognition of the timezone variant was introduced in
  Xmlrpc-c 1.20 (September 2009).
This commit is contained in:
Bjørn Forsman 2013-11-18 06:54:56 +01:00
parent 522275f297
commit c41cf22b62

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, curl }:
stdenv.mkDerivation rec {
name = "xmlrpc-c-1.25.25";
name = "xmlrpc-c-1.25.26";
src = fetchurl {
url = "mirror://sourceforge/xmlrpc-c/${name}.tgz";
sha256 = "1sk33q4c6liza920rp4w803cfq0a79saq7fg1yjsp8hks7q011ml";
sha256 = "1f82vsdkldhk1sfqyh6z0ylp5769x4fx3rnd2hw0c6fhx8swcmgj";
};
buildInputs = [ curl ];