ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
49 lines
1 KiB
Nix
49 lines
1 KiB
Nix
{ makeWrapper
|
|
, nixosTests
|
|
, symlinkJoin
|
|
|
|
, extraPythonPackages ? (ps: [ ])
|
|
|
|
, libsForQt5
|
|
|
|
# unwrapped package parameters
|
|
, withGrass ? true
|
|
, withWebKit ? false
|
|
}:
|
|
let
|
|
qgis-ltr-unwrapped = libsForQt5.callPackage ./unwrapped-ltr.nix {
|
|
withGrass = withGrass;
|
|
withWebKit = withWebKit;
|
|
};
|
|
in symlinkJoin rec {
|
|
|
|
inherit (qgis-ltr-unwrapped) version;
|
|
name = "qgis-${version}";
|
|
|
|
paths = [ qgis-ltr-unwrapped ];
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
qgis-ltr-unwrapped.py.pkgs.wrapPython
|
|
];
|
|
|
|
# extend to add to the python environment of QGIS without rebuilding QGIS application.
|
|
pythonInputs = qgis-ltr-unwrapped.pythonBuildInputs ++ (extraPythonPackages qgis-ltr-unwrapped.py.pkgs);
|
|
|
|
postBuild = ''
|
|
buildPythonPath "$pythonInputs"
|
|
|
|
for program in $out/bin/*; do
|
|
wrapProgram $program \
|
|
--prefix PATH : $program_PATH \
|
|
--set PYTHONPATH $program_PYTHONPATH
|
|
done
|
|
'';
|
|
|
|
passthru = {
|
|
unwrapped = qgis-ltr-unwrapped;
|
|
tests.qgis-ltr = nixosTests.qgis-ltr;
|
|
};
|
|
|
|
inherit (qgis-ltr-unwrapped) meta;
|
|
}
|