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

24 lines
626 B
Nix
Raw Normal View History

2014-10-19 18:33:16 +02:00
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
pname = "libxls";
2020-06-26 19:03:20 +02:00
version = "1.5.3";
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";
2020-06-26 19:03:20 +02:00
sha256 = "0rl513wpq5qh7wkmdk4g9c68rzffv3mcbz48p4xyg4969zrx8lnm";
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
};
}