3
0
Fork 0
forked from mirrors/nixpkgs

gsoap: 2.7.15 -> 2.8.16

Version 2.7.15 doesn't build anymore (source archive not downloadable).
Bump it to latest version and update meta attributes.
This commit is contained in:
Bjørn Forsman 2013-09-04 21:18:48 +02:00
parent 6167864aab
commit 6eb240ed24

View file

@ -1,19 +1,32 @@
{ stdenv, fetchurl, m4, bison, flex, openssl, zlib }:
{ stdenv, fetchurl, unzip, m4, bison, flex, openssl, zlib }:
let version = "2.7.15"; in
stdenv.mkDerivation {
stdenv.mkDerivation rec {
name = "gsoap-${version}";
version = "2.8.16";
src = fetchurl {
url = "mirror://sourceforge/gsoap2/files/gSOAP/2.7.15%20stable/gsoap_${version}.tar.gz";
sha256 = "3ed883ab1a3d32b5bb2bf599306f247f6de3ffedd8890eb0e6303ae15995dc12";
url = "mirror://sourceforge/project/gsoap2/gSOAP/gsoap_${version}.zip";
sha256 = "00lhhysa9f9ychkvn1ij0ngr54l1dl9ww801yrliwq5c05gql7a6";
};
buildInputs = [ m4 bison flex openssl zlib ];
meta = {
buildInputs = [ unzip m4 bison flex openssl zlib ];
meta = with stdenv.lib; {
description = "C/C++ toolkit for SOAP web services and XML-based applications";
homepage = "http://www.cs.fsu.edu/~engelen/soap.html";
description = "The gSOAP toolkit is an open source C and C++ software development toolkit for SOAP/WSDL and XML Web services.";
license = "free-non-copyleft";
# gsoap is dual/triple licensed (see homepage for details):
# 1. gSOAP Public License 1.3 (based on Mozilla Public License 1.1).
# Components NOT covered by the gSOAP Public License are:
# - wsdl2h tool and its source code output,
# - soapcpp2 tool and its source code output,
# - UDDI code,
# - the webserver example code in gsoap/samples/webserver,
# - and several example applications in the gsoap/samples directory.
# 2. GPLv2 covers all of the software
# 3. Proprietary commercial software development license (removes GPL
# restrictions)
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}