File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 22 lib ,
33 stdenv ,
44 fetchurl ,
5+ pkg-config ,
56 curl ,
67 libxml2 ,
78} :
89
910stdenv . mkDerivation rec {
1011 pname = "xmlrpc-c" ;
11- version = "1.59.03 " ;
12+ version = "1.60.05 " ;
1213
1314 src = fetchurl {
1415 url = "mirror://sourceforge/xmlrpc-c/${ pname } -${ version } .tgz" ;
15- hash = "sha256-vbcdtCqwvlFZFVWIXRFoKwRMEDTUoylkAb+SHsCyM/4 =" ;
16+ hash = "sha256-Z9hgBiRZ6ieEwHtNeRMxnZU5+nKfU0N46OQciRjyrfY =" ;
1617 } ;
1718
19+ postPatch = ''
20+ rm -rf lib/expat
21+ '' ;
22+
23+ nativeBuildInputs = [
24+ pkg-config
25+ ] ;
26+
1827 buildInputs = [
1928 curl
2029 libxml2
@@ -37,8 +46,7 @@ stdenv.mkDerivation rec {
3746 meta = with lib ; {
3847 description = "Lightweight RPC library based on XML and HTTP" ;
3948 homepage = "https://xmlrpc-c.sourceforge.net/" ;
40- # <xmlrpc-c>/doc/COPYING also lists "Expat license",
41- # "ABYSS Web Server License" and "Python 1.5.2 License"
49+ # <xmlrpc-c>/doc/COPYING also lists "ABYSS Web Server License" and "Python 1.5.2 License"
4250 license = licenses . bsd3 ;
4351 platforms = platforms . unix ;
4452 maintainers = [ maintainers . bjornfor ] ;
You can’t perform that action at this time.
0 commit comments