mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
190 lines
3.6 KiB
Nix
190 lines
3.6 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, mkDerivation
|
|
, substituteAll
|
|
, wrapGAppsHook3
|
|
, wrapQtAppsHook
|
|
|
|
, withGrass ? true
|
|
, withWebKit ? false
|
|
|
|
, bison
|
|
, cmake
|
|
, draco
|
|
, exiv2
|
|
, fcgi
|
|
, flex
|
|
, geos
|
|
, grass
|
|
, gsl
|
|
, hdf5
|
|
, libspatialindex
|
|
, libspatialite
|
|
, libzip
|
|
, netcdf
|
|
, ninja
|
|
, openssl
|
|
, pdal
|
|
, postgresql
|
|
, proj
|
|
, protobuf
|
|
, python311
|
|
, qca-qt5
|
|
, qscintilla
|
|
, qt3d
|
|
, qtbase
|
|
, qtkeychain
|
|
, qtlocation
|
|
, qtmultimedia
|
|
, qtsensors
|
|
, qtserialport
|
|
, qtwebkit
|
|
, qtxmlpatterns
|
|
, qwt
|
|
, sqlite
|
|
, txt2tags
|
|
, zstd
|
|
}:
|
|
|
|
let
|
|
py = python311.override {
|
|
self = py;
|
|
packageOverrides = self: super: {
|
|
pyqt5 = super.pyqt5.override {
|
|
withLocation = true;
|
|
withSerialPort = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
pythonBuildInputs = with py.pkgs; [
|
|
chardet
|
|
gdal
|
|
jinja2
|
|
numpy
|
|
owslib
|
|
psycopg2
|
|
pygments
|
|
pyqt5
|
|
pyqt-builder
|
|
python-dateutil
|
|
pytz
|
|
pyyaml
|
|
qscintilla-qt5
|
|
requests
|
|
setuptools
|
|
sip
|
|
six
|
|
urllib3
|
|
];
|
|
in mkDerivation rec {
|
|
version = "3.38.2";
|
|
pname = "qgis-unwrapped";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qgis";
|
|
repo = "QGIS";
|
|
rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}";
|
|
hash = "sha256-lArwRtHR/KAsgjpjid6YnPA9BkcG1Mg/KeIIOWN75Kg=";
|
|
};
|
|
|
|
passthru = {
|
|
inherit pythonBuildInputs;
|
|
inherit py;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
wrapGAppsHook3
|
|
wrapQtAppsHook
|
|
|
|
bison
|
|
cmake
|
|
flex
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
draco
|
|
exiv2
|
|
fcgi
|
|
geos
|
|
gsl
|
|
hdf5
|
|
libspatialindex
|
|
libspatialite
|
|
libzip
|
|
netcdf
|
|
openssl
|
|
pdal
|
|
postgresql
|
|
proj
|
|
protobuf
|
|
qca-qt5
|
|
qscintilla
|
|
qt3d
|
|
qtbase
|
|
qtkeychain
|
|
qtlocation
|
|
qtmultimedia
|
|
qtsensors
|
|
qtserialport
|
|
qtxmlpatterns
|
|
qwt
|
|
sqlite
|
|
txt2tags
|
|
zstd
|
|
] ++ lib.optional withGrass grass
|
|
++ lib.optional withWebKit qtwebkit
|
|
++ pythonBuildInputs;
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./set-pyqt-package-dirs.patch;
|
|
pyQt5PackageDir = "${py.pkgs.pyqt5}/${py.pkgs.python.sitePackages}";
|
|
qsciPackageDir = "${py.pkgs.qscintilla-qt5}/${py.pkgs.python.sitePackages}";
|
|
})
|
|
];
|
|
|
|
# Add path to Qt platform plugins
|
|
# (offscreen is needed by "${APIS_SRC_DIR}/generate_console_pap.py")
|
|
env.QT_QPA_PLATFORM_PLUGIN_PATH="${qtbase}/${qtbase.qtPluginPrefix}/platforms";
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
|
"-DWITH_3D=True"
|
|
"-DWITH_PDAL=True"
|
|
"-DENABLE_TESTS=False"
|
|
"-DQT_PLUGINS_DIR=${qtbase}/${qtbase.qtPluginPrefix}"
|
|
] ++ lib.optional (!withWebKit) "-DWITH_QTWEBKIT=OFF"
|
|
++ lib.optional withGrass (let
|
|
gmajor = lib.versions.major grass.version;
|
|
gminor = lib.versions.minor grass.version;
|
|
in "-DGRASS_PREFIX${gmajor}=${grass}/grass${gmajor}${gminor}"
|
|
);
|
|
|
|
qtWrapperArgs = [
|
|
"--set QT_QPA_PLATFORM_PLUGIN_PATH ${qtbase}/${qtbase.qtPluginPrefix}/platforms"
|
|
];
|
|
|
|
dontWrapGApps = true; # wrapper params passed below
|
|
|
|
postFixup = lib.optionalString withGrass ''
|
|
# GRASS has to be availble on the command line even though we baked in
|
|
# the path at build time using GRASS_PREFIX.
|
|
# Using wrapGAppsHook also prevents file dialogs from crashing the program
|
|
# on non-NixOS.
|
|
wrapProgram $out/bin/qgis \
|
|
"''${gappsWrapperArgs[@]}" \
|
|
--prefix PATH : ${lib.makeBinPath [ grass ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Free and Open Source Geographic Information System";
|
|
homepage = "https://www.qgis.org";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; teams.geospatial.members ++ [ lsix ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|