nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

commit 9722b00b8a4ca26709e56e7aad7b60a10bcb67fe
parent d3b2f5b5be5a3484b931b95fd82ce1ca9b3d3866
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date:   Tue,  4 Oct 2022 13:45:32 +0300

geographiclib: fix build

Diffstat:
Mpkgs/geospatial/geographiclib/default.nix | 9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/pkgs/geospatial/geographiclib/default.nix b/pkgs/geospatial/geographiclib/default.nix @@ -15,10 +15,17 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DBUILD_DOCUMENTATION=ON" + "-DCMAKE_INSTALL_LIBDIR=lib" ]; meta = with lib; { - description = "GeographicLib offers a C++ interfaces to a small (but important!) set of geographic transformations"; + description = "C++ geographic library"; + longDescription = '' + GeographicLib is a small C++ library for: + * geodesic and rhumb line calculations + * conversions between geographic, UTM, UPS, MGRS, geocentric, and local cartesian coordinates + * gravity (e.g., EGM2008) and geomagnetic field (e.g., WMM2020) calculations + ''; homepage = "https://geographiclib.sourceforge.io/"; license = licenses.mit; maintainers = [ maintainers.sikmir ];