2015-02-02 17:46:06 +00:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, unzip }:
|
2014-10-19 17:33:37 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xlslib";
|
2016-11-23 14:49:18 +00:00
|
|
|
version = "2.5.0";
|
2014-10-19 17:33:37 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xlslib/xlslib-package-${version}.zip";
|
2015-02-02 17:46:06 +00:00
|
|
|
sha256 = "1wx3jbpkz2rvgs45x6mwawamd1b2llb0vn29b5sr0rfxzx9d1985";
|
2014-10-19 17:33:37 +01:00
|
|
|
};
|
|
|
|
|
2015-02-02 17:46:06 +00:00
|
|
|
nativeBuildInputs = [ unzip autoreconfHook ];
|
2014-10-19 17:33:37 +01:00
|
|
|
|
|
|
|
setSourceRoot = "export sourceRoot=xlslib/xlslib";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C++/C library to construct Excel .xls files in code";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/xlslib/";
|
2014-10-19 17:33:37 +01:00
|
|
|
license = licenses.bsd2;
|
2016-09-01 18:39:33 +01:00
|
|
|
platforms = platforms.linux;
|
2015-05-14 18:09:10 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-10-19 17:33:37 +01:00
|
|
|
};
|
|
|
|
}
|