about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/freexl/default.nix
blob: 7bc1322ccc8cb11d20a9a6b734a04c627cef8f9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, fetchurl, validatePkgConfig, libiconv }:

stdenv.mkDerivation rec {
  pname = "freexl";
  version = "1.0.6";

  src = fetchurl {
    url = "https://www.gaia-gis.it/gaia-sins/freexl-${version}.tar.gz";
    hash = "sha256-Pei1ej0TDLKIHqUtOqnOH+7bG1e32qTrN/dRQE+Q/CI=";
  };

  nativeBuildInputs = [ validatePkgConfig ];

  buildInputs = lib.optional stdenv.isDarwin libiconv;

  enableParallelBuilding = true;

  doCheck = true;

  meta = with lib; {
    description = "A library to extract valid data from within an Excel (.xls) spreadsheet";
    homepage = "https://www.gaia-gis.it/fossil/freexl";
    # They allow any of these
    license = with licenses; [ gpl2Plus lgpl21Plus mpl11 ];
    platforms = platforms.unix;
    maintainers = with maintainers; [ sikmir ];
  };
}