nixpkgs/pkgs/development/libraries/libxls/default.nix

24 lines
624 B
Nix
Raw Normal View History

2014-10-19 18:33:16 +02:00
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
pname = "libxls";
2019-06-03 15:46:05 +02:00
version = "1.5.1";
2014-10-19 18:33:16 +02:00
src = fetchurl {
2019-06-03 15:46:05 +02:00
url = "https://github.com/libxls/libxls/releases/download/v${version}/libxls-${version}.tar.gz";
sha256 = "0dam8qgbc5ykzaxmrjhpmfm8lnlcdk6cbpzyaya91qwwa80qbj1v";
2014-10-19 18:33:16 +02:00
};
nativeBuildInputs = [ unzip ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Extract Cell Data From Excel xls files";
homepage = https://sourceforge.net/projects/libxls/;
2014-10-19 18:33:16 +02:00
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar ];
2014-10-19 18:33:16 +02:00
};
}