24 lines
626 B
Nix
24 lines
626 B
Nix
{ stdenv, fetchurl, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libxls";
|
|
version = "1.5.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/libxls/libxls/releases/download/v${version}/libxls-${version}.tar.gz";
|
|
sha256 = "0rl513wpq5qh7wkmdk4g9c68rzffv3mcbz48p4xyg4969zrx8lnm";
|
|
};
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Extract Cell Data From Excel xls files";
|
|
homepage = "https://sourceforge.net/projects/libxls/";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|