35 lines
655 B
Nix
35 lines
655 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
qtbase,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qxlsx";
|
|
version = "1.4.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "QtExcel";
|
|
repo = "QXlsx";
|
|
rev = "v${version}";
|
|
hash = "sha256-mMhe4yztU9I/zJFbj/0GNiIoSy7U4rQ1Y3mDvvHNKXk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ qtbase ];
|
|
|
|
preConfigure = ''
|
|
cd QXlsx
|
|
'';
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = with lib; {
|
|
description = "Excel file(*.xlsx) reader/writer library using Qt 5 or 6";
|
|
homepage = "https://qtexcel.github.io/QXlsx";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nickcao ];
|
|
};
|
|
}
|