2013-09-04 20:18:48 +01:00
|
|
|
{ stdenv, fetchurl, unzip, m4, bison, flex, openssl, zlib }:
|
2010-01-27 12:12:35 +00:00
|
|
|
|
2013-09-04 20:18:48 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-01-27 12:12:35 +00:00
|
|
|
name = "gsoap-${version}";
|
2016-11-04 15:10:21 +00:00
|
|
|
version = "2.8.37";
|
2010-01-27 12:12:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-11-04 15:10:21 +00:00
|
|
|
url = "mirror://sourceforge/project/gsoap2/gsoap-2.8/gsoap_${version}.zip";
|
|
|
|
sha256 = "1nvf5hgwff1agqdzbn3qc5569jzm14qkwqws0673z6hv2l3lijx3";
|
2010-01-27 12:12:35 +00:00
|
|
|
};
|
|
|
|
|
2013-09-04 20:18:48 +01:00
|
|
|
buildInputs = [ unzip m4 bison flex openssl zlib ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C/C++ toolkit for SOAP web services and XML-based applications";
|
2010-01-27 12:12:35 +00:00
|
|
|
homepage = "http://www.cs.fsu.edu/~engelen/soap.html";
|
2013-09-04 20:18:48 +01:00
|
|
|
# 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 ];
|
2010-01-27 12:12:35 +00:00
|
|
|
};
|
|
|
|
}
|