2015-02-02 17:46:06 +00:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, unzip }:
|
2014-10-19 16:33:37 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-02 17:46:06 +00:00
|
|
|
version = "2.5.0";
|
2014-10-19 16:33:37 +00:00
|
|
|
name = "xlslib-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xlslib/xlslib-package-${version}.zip";
|
2015-02-02 17:46:06 +00:00
|
|
|
sha256 = "1wx3jbpkz2rvgs45x6mwawamd1b2llb0vn29b5sr0rfxzx9d1985";
|
2014-10-19 16:33:37 +00:00
|
|
|
};
|
|
|
|
|
2015-02-02 17:46:06 +00:00
|
|
|
nativeBuildInputs = [ unzip autoreconfHook ];
|
2014-10-19 16:33:37 +00:00
|
|
|
|
|
|
|
setSourceRoot = "export sourceRoot=xlslib/xlslib";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C++/C library to construct Excel .xls files in code";
|
2015-07-28 08:57:29 +00:00
|
|
|
homepage = http://sourceforge.net/projects/xlslib/;
|
2014-10-19 16:33:37 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.unix;
|
2015-05-14 17:09:10 +00:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-10-19 16:33:37 +00:00
|
|
|
};
|
|
|
|
}
|