mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
32 lines
1.0 KiB
Nix
32 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, postgresql, perl, cmake, boost }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pgrouting";
|
|
version = "3.4.2";
|
|
|
|
nativeBuildInputs = [ cmake perl ];
|
|
buildInputs = [ postgresql boost ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pgRouting";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-By3XX4ow5+OdvpLlpozZe3674VSehO9T96pQtJy5y6g=";
|
|
};
|
|
|
|
installPhase = ''
|
|
install -D lib/*.so -t $out/lib
|
|
install -D sql/pgrouting--${version}.sql -t $out/share/postgresql/extension
|
|
install -D sql/common/pgrouting.control -t $out/share/postgresql/extension
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A PostgreSQL/PostGIS extension that provides geospatial routing functionality";
|
|
homepage = "https://pgrouting.org/";
|
|
changelog = "https://github.com/pgRouting/pgrouting/releases/tag/v${version}";
|
|
maintainers = [ maintainers.steve-chavez ];
|
|
platforms = postgresql.meta.platforms;
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|