about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/readosm/default.nix
blob: 8ba1f571b0287d408471742a902bce76bba4fb56 (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
{ lib, stdenv, fetchurl, expat, zlib, validatePkgConfig }:

stdenv.mkDerivation rec {
  pname = "readosm";
  version = "1.1.0a";

  src = fetchurl {
    url = "https://www.gaia-gis.it/gaia-sins/readosm-${version}.tar.gz";
    hash = "sha256-23wFHSVs7H7NTDd1q5vIINpaS/cv/U6fQLkR15dw8UU=";
  };

  nativeBuildInputs = [ validatePkgConfig ];

  buildInputs = [ expat zlib ];

  enableParallelBuilding = true;

  doCheck = true;

  meta = with lib; {
    description = "An open source library to extract valid data from within an Open Street Map input file";
    homepage = "https://www.gaia-gis.it/fossil/readosm";
    license = with licenses; [ mpl11 gpl2Plus lgpl21Plus ];
    platforms = platforms.unix;
  };
}