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

24 lines
626 B
Nix
Raw Normal View History

2014-10-19 17:33:16 +01:00
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
pname = "libxls";
2020-10-25 19:31:34 +00:00
version = "1.6.1";
2014-10-19 17:33:16 +01:00
src = fetchurl {
2019-06-03 14:46:05 +01:00
url = "https://github.com/libxls/libxls/releases/download/v${version}/libxls-${version}.tar.gz";
2020-10-25 19:31:34 +00:00
sha256 = "1y7wk55blk16hmvf9dz5ci84hlhv6pw6mnr1mfnibfw3gsxmzhyv";
2014-10-19 17:33:16 +01: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 17:33:16 +01:00
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar ];
2014-10-19 17:33:16 +01:00
};
}