1 { lib, stdenv, fetchurl, autoreconfHook, unzip }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/xlslib/xlslib-package-${version}.zip";
9 sha256 = "1wx3jbpkz2rvgs45x6mwawamd1b2llb0vn29b5sr0rfxzx9d1985";
12 nativeBuildInputs = [ unzip autoreconfHook ];
14 setSourceRoot = "export sourceRoot=xlslib/xlslib";
16 enableParallelBuilding = true;
19 description = "C++/C library to construct Excel .xls files in code";
20 homepage = "https://sourceforge.net/projects/xlslib/";
21 license = licenses.bsd2;
22 platforms = platforms.linux;
23 maintainers = with maintainers; [ abbradar ];