2018-03-18 12:41:14 +00:00
|
|
|
{ stdenv, fetchFromGitHub, gdal, cmake, ninja, proj, clipper, zlib, qtbase, qttools
|
2018-04-06 20:13:47 +01:00
|
|
|
, qtlocation, qtsensors, doxygen, cups, makeWrapper, qtimageformats
|
2018-03-18 12:41:14 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "OpenOrienteering-Mapper-${version}";
|
2018-10-27 17:03:09 +01:00
|
|
|
version = "0.8.3";
|
2018-03-18 12:41:14 +00:00
|
|
|
|
2018-04-06 20:13:47 +01:00
|
|
|
buildInputs = [ gdal qtbase qttools qtlocation qtimageformats
|
|
|
|
qtsensors clipper zlib proj doxygen cups];
|
2018-03-18 12:41:14 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake makeWrapper ninja ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenOrienteering";
|
|
|
|
repo = "mapper";
|
|
|
|
rev = "v${version}";
|
2018-10-27 17:03:09 +01:00
|
|
|
sha256 = "0pnqwvmg97mgc2ci3abmx07l0njxcrbljh75w8ym31g0jq76pgr9";
|
2018-03-18 12:41:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
cmakeFlags =
|
|
|
|
[
|
|
|
|
# Required by the build to be specified
|
|
|
|
"-DPROJ4_ROOT=${proj}"
|
|
|
|
|
|
|
|
# Building the manual and bundling licenses fails
|
|
|
|
"-DLICENSING_PROVIDER:BOOL=OFF"
|
|
|
|
"-DMapper_MANUAL_QTHELP:BOOL=OFF"
|
|
|
|
] ++
|
|
|
|
(stdenv.lib.optionals stdenv.isDarwin
|
|
|
|
[
|
|
|
|
# Usually enabled on Darwin
|
|
|
|
"-DCMAKE_FIND_FRAMEWORK=never"
|
|
|
|
# FindGDAL is broken and always finds /Library/Framework unless this is
|
|
|
|
# specified
|
|
|
|
"-DGDAL_INCLUDE_DIR=${gdal}/include"
|
|
|
|
"-DGDAL_CONFIG=${gdal}/bin/gdal-config"
|
|
|
|
"-DGDAL_LIBRARY=${gdal}/lib/libgdal.dylib"
|
|
|
|
# Don't bundle libraries
|
|
|
|
"-DMapper_PACKAGE_PROJ=0"
|
|
|
|
"-DMapper_PACKAGE_QT=0"
|
|
|
|
"-DMapper_PACKAGE_ASSISTANT=0"
|
|
|
|
"-DMapper_PACKAGE_GDAL=0"
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
|
|
postInstall =
|
|
|
|
stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
# Fixes "This application failed to start because it could not find or load the Qt
|
|
|
|
# platform plugin "cocoa"."
|
|
|
|
wrapProgram $out/Mapper.app/Contents/MacOS/Mapper \
|
2018-04-06 20:13:47 +01:00
|
|
|
--set QT_QPA_PLATFORM_PLUGIN_PATH ${qtbase.bin}/lib/qt-*/plugins/platforms \
|
|
|
|
--set QT_PLUGIN_PATH ${qtbase.bin}/${qtbase.qtPluginPrefix}:${qtimageformats}/${qtbase.qtPluginPrefix}
|
2018-03-18 12:41:14 +00:00
|
|
|
mkdir -p $out/bin
|
|
|
|
ln -s $out/Mapper.app/Contents/MacOS/Mapper $out/bin/mapper
|
|
|
|
'';
|
|
|
|
|
2018-04-08 18:27:52 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-03-18 12:41:14 +00:00
|
|
|
description = ''
|
|
|
|
OpenOrienteering Mapper is an orienteering mapmaking program
|
|
|
|
and provides a free alternative to the existing proprietary solution.
|
|
|
|
'';
|
|
|
|
homepage = https://www.openorienteering.org/apps/mapper/;
|
2018-04-08 18:27:52 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
maintainers = with maintainers; [mpickering];
|
2018-03-18 12:41:14 +00:00
|
|
|
};
|
|
|
|
}
|