nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at gcc-offload 37 lines 841 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 postgresql, 6 perl, 7 cmake, 8 boost, 9 buildPostgresqlExtension, 10}: 11 12buildPostgresqlExtension rec { 13 pname = "pgrouting"; 14 version = "3.7.0"; 15 16 nativeBuildInputs = [ 17 cmake 18 perl 19 ]; 20 buildInputs = [ boost ]; 21 22 src = fetchFromGitHub { 23 owner = "pgRouting"; 24 repo = "pgrouting"; 25 rev = "v${version}"; 26 hash = "sha256-IwH8bEdyJyPMFYtCfWLRr+jVmS5sOr5QFOhGykGPYh4="; 27 }; 28 29 meta = with lib; { 30 description = "PostgreSQL/PostGIS extension that provides geospatial routing functionality"; 31 homepage = "https://pgrouting.org/"; 32 changelog = "https://github.com/pgRouting/pgrouting/releases/tag/v${version}"; 33 maintainers = with maintainers; teams.geospatial.members ++ [ steve-chavez ]; 34 platforms = postgresql.meta.platforms; 35 license = licenses.gpl2Plus; 36 }; 37}