nixpkgs/pkgs/development/libraries/libxls/default.nix
2019-06-03 17:00:38 +03:00

24 lines
634 B
Nix

{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "libxls-${version}";
version = "1.5.1";
src = fetchurl {
url = "https://github.com/libxls/libxls/releases/download/v${version}/libxls-${version}.tar.gz";
sha256 = "0dam8qgbc5ykzaxmrjhpmfm8lnlcdk6cbpzyaya91qwwa80qbj1v";
};
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 ];
};
}