about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/librttopo/default.nix
blob: 690417c3e730b8f8f34cb0c30181bbe94ba3fdc1 (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
29
30
31
32
33
34
35
36
37
38
39
40
{ lib
, stdenv
, fetchFromGitea
, autoreconfHook
, validatePkgConfig
, geos
}:

stdenv.mkDerivation rec {
  pname = "librttopo";
  version = "1.1.0";

  outputs = [ "out" "dev" ];

  src = fetchFromGitea {
    domain = "git.osgeo.org/gitea";
    owner = "rttopo";
    repo = "librttopo";
    rev = "librttopo-${version}";
    sha256 = "0h7lzlkn9g4xky6h81ndy0aa6dxz8wb6rnl8v3987jy1i6pr072p";
  };

  nativeBuildInputs = [
    autoreconfHook
    validatePkgConfig
    geos # for geos-config
  ];

  buildInputs = [ geos ];

  enableParallelBuilding = true;

  meta = with lib; {
    description = "RT Topology Library";
    homepage = "https://git.osgeo.org/gitea/rttopo/librttopo";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ dotlambda ];
    platforms = platforms.unix;
  };
}