applying patches provided by griswold

svn path=/nixpkgs/trunk/; revision=19707
This commit is contained in:
Rob Vermaas
2010-01-27 12:12:35 +00:00
parent 77bf39bf82
commit 13417770a3
11 changed files with 221 additions and 11 deletions
@@ -0,0 +1,19 @@
{ stdenv, fetchurl, m4, bison, flex, openssl, zlib }:
let version = "2.7.15"; in
stdenv.mkDerivation {
name = "gsoap-${version}";
src = fetchurl {
url = "mirror://sourceforge/gsoap2/files/gSOAP/2.7.15%20stable/gsoap_${version}.tar.gz";
sha256 = "3ed883ab1a3d32b5bb2bf599306f247f6de3ffedd8890eb0e6303ae15995dc12";
};
buildInputs = [ m4 bison flex openssl zlib ];
meta = {
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";
};
}