mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
6eb240ed24
Version 2.7.15 doesn't build anymore (source archive not downloadable). Bump it to latest version and update meta attributes.
33 lines
1.2 KiB
Nix
33 lines
1.2 KiB
Nix
{ stdenv, fetchurl, unzip, m4, bison, flex, openssl, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gsoap-${version}";
|
|
version = "2.8.16";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/gsoap2/gSOAP/gsoap_${version}.zip";
|
|
sha256 = "00lhhysa9f9ychkvn1ij0ngr54l1dl9ww801yrliwq5c05gql7a6";
|
|
};
|
|
|
|
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";
|
|
# 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 ];
|
|
};
|
|
}
|