python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / xlslib / default.nix
blob77a11b5311007f6b4d229cfb65a8c6fcee5676f1
1 { lib, stdenv, fetchurl, autoreconfHook, unzip }:
3 stdenv.mkDerivation rec {
4   pname = "xlslib";
5   version = "2.5.0";
7   src = fetchurl {
8     url = "mirror://sourceforge/xlslib/xlslib-package-${version}.zip";
9     sha256 = "1wx3jbpkz2rvgs45x6mwawamd1b2llb0vn29b5sr0rfxzx9d1985";
10   };
12   nativeBuildInputs = [ unzip autoreconfHook ];
14   setSourceRoot = "export sourceRoot=xlslib/xlslib";
16   enableParallelBuilding = true;
18   meta = with lib; {
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 ];
24   };