librttopo: init at 1.1.0

This commit is contained in:
Robert Schütz 2021-05-24 21:42:40 +02:00
parent f96cff58df
commit 0492987aea
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, stdenv
, fetchFromGitea
, autoreconfHook
, 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 ];
buildInputs = [ geos ];
meta = with lib; {
description = "RT Topology Library";
homepage = "https://git.osgeo.org/gitea/rttopo/librttopo";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -16564,6 +16564,8 @@ in
librsync_0_9 = callPackage ../development/libraries/librsync/0.9.nix { };
librttopo = callPackage ../development/libraries/librttopo { };
libs3 = callPackage ../development/libraries/libs3 { };
libschrift = callPackage ../development/libraries/libschrift { };