summary refs log tree commit diff
path: root/pkgs/development/libraries/libxls/default.nix
blob: 0d711514444981f0090356381702faf72c0c195a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation rec {
  name = "libxls-1.4.0";

  src = fetchurl {
    url = "mirror://sourceforge/libxls/${name}.zip";
    sha256 = "1g8ds7wbhsa4hdcn77xc2c0l3vvz5bx2hx9ng9c9n7aii92ymfnk";
  };

  nativeBuildInputs = [ unzip ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Extract Cell Data From Excel xls files";
    homepage = http://sourceforge.net/projects/libxls/;
    license = licenses.bsd2;
    platforms = platforms.unix;
    maintainers = with maintainers; [ abbradar ];
  };
}