10 stdenv.mkDerivation rec {
11 pname = "libxlsxwriter";
14 src = fetchFromGitHub {
16 repo = "libxlsxwriter";
18 hash = "sha256-ZXVNW5cEWgMXKLnE0IpwWS0RIWBta5uhuGh4R9uFJ14=";
27 "PREFIX=${placeholder "out"}"
28 "USE_SYSTEM_MINIZIP=1"
31 # TEST 428/429 worksheet:worksheet_table15 *** buffer overflow detected ***: terminated
32 hardeningDisable = [ "fortify3" ];
43 description = "C library for creating Excel XLSX files";
44 homepage = "https://libxlsxwriter.github.io/";
45 changelog = "https://github.com/jmcnamara/libxlsxwriter/blob/${src.rev}/Changes.txt";
46 license = licenses.bsd2;
47 maintainers = with maintainers; [ dotlambda ];
48 platforms = platforms.unix;