summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-04-09 17:55:02 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-04-10 23:23:53 -0700
commitf2c5ddb966b8d0c9d9c928116456c77ce7860c73 (patch)
treeb0efdf995afde05d0255cc1761933cb9458bc2c0 /pkgs
parentff555c3b471979cd076e8d001e25caed0590bdc1 (diff)
downloadnixpkgs-f2c5ddb966b8d0c9d9c928116456c77ce7860c73.tar
nixpkgs-f2c5ddb966b8d0c9d9c928116456c77ce7860c73.tar.gz
nixpkgs-f2c5ddb966b8d0c9d9c928116456c77ce7860c73.tar.bz2
nixpkgs-f2c5ddb966b8d0c9d9c928116456c77ce7860c73.tar.lz
nixpkgs-f2c5ddb966b8d0c9d9c928116456c77ce7860c73.tar.xz
nixpkgs-f2c5ddb966b8d0c9d9c928116456c77ce7860c73.tar.zst
nixpkgs-f2c5ddb966b8d0c9d9c928116456c77ce7860c73.zip
xmlrpc-c: 1.25.30 -> 1.33.17
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/xmlrpc-c/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/libraries/xmlrpc-c/default.nix b/pkgs/development/libraries/xmlrpc-c/default.nix
index f3b91f442de..56bcba8297d 100644
--- a/pkgs/development/libraries/xmlrpc-c/default.nix
+++ b/pkgs/development/libraries/xmlrpc-c/default.nix
@@ -1,14 +1,18 @@
-{ stdenv, fetchurl, curl }:
+{ stdenv, fetchurl, curl, libxml2 }:
 
 stdenv.mkDerivation rec {
-  name = "xmlrpc-c-1.25.30";
+  name = "xmlrpc-c-1.33.17";
 
   src = fetchurl {
     url = "mirror://sourceforge/xmlrpc-c/${name}.tgz";
-    sha256 = "161gj237baagy5jaa08m54zfyvilb19gql0i5c9ysl3xqm7fvrla";
+    sha256 = "0makq1zpfqnrj6xx1xc7wi4mh115ri9p4yz2rbvjhj0il4y8l4ah";
   };
 
-  buildInputs = [ curl ];
+  buildInputs = [ curl libxml2 ];
+
+  configureFlags = [
+    "--enable-libxml2-backend"
+  ];
 
   # Build and install the "xmlrpc" tool (like the Debian package)
   postInstall = ''