libxlsxwriter: init at 1.0.3
This commit is contained in:
parent
5bc2962319
commit
c2bd8ce862
2 changed files with 48 additions and 0 deletions
46
pkgs/development/libraries/libxlsxwriter/default.nix
Normal file
46
pkgs/development/libraries/libxlsxwriter/default.nix
Normal file
|
@ -0,0 +1,46 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, minizip
|
||||
, python3
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libxlsxwriter";
|
||||
version = "1.0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jmcnamara";
|
||||
repo = "libxlsxwriter";
|
||||
rev = "RELEASE_${version}";
|
||||
sha256 = "14c5rgx87nhzasr0j7mcfr1w7ifz0gmdiqy2xq59di5xvcdrpxpv";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3.pkgs.pytest
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
minizip
|
||||
zlib
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=${placeholder "out"}"
|
||||
"USE_SYSTEM_MINIZIP=1"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
checkTarget = "test";
|
||||
|
||||
meta = with lib; {
|
||||
description = "C library for creating Excel XLSX files";
|
||||
homepage = "https://libxlsxwriter.github.io/";
|
||||
changelog = "https://github.com/jmcnamara/libxlsxwriter/blob/${src.rev}/Changes.txt";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -16323,6 +16323,8 @@ in
|
|||
|
||||
libxls = callPackage ../development/libraries/libxls { };
|
||||
|
||||
libxlsxwriter = callPackage ../development/libraries/libxlsxwriter { };
|
||||
|
||||
libxmi = callPackage ../development/libraries/libxmi { };
|
||||
|
||||
libxml2 = callPackage ../development/libraries/libxml2 {
|
||||
|
|
Loading…
Reference in a new issue