diff options
| author | Ivan Mincik <ivan.mincik@gmail.com> | 2024-01-15 18:46:42 +0100 |
|---|---|---|
| committer | Ivan Mincik <ivan.mincik@gmail.com> | 2024-01-15 18:46:42 +0100 |
| commit | 5fe419864fa7354703c56b08a7c90993a91b6d31 (patch) | |
| tree | 94ca1504b2f5ae2908cea98934b25cd6c8ab50d1 | |
| parent | qgis: don't build with grass by default (diff) | |
| download | nixpkgs-origin/qgis-without-grass.tar.gz | |
qgis-ltr: don't build with grass by defaultorigin/qgis-without-grass
| -rw-r--r-- | pkgs/applications/gis/qgis/unwrapped-ltr.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/gis/qgis/unwrapped-ltr.nix b/pkgs/applications/gis/qgis/unwrapped-ltr.nix index 7a19b6b94b4a..20bdc69852e1 100644 --- a/pkgs/applications/gis/qgis/unwrapped-ltr.nix +++ b/pkgs/applications/gis/qgis/unwrapped-ltr.nix @@ -7,7 +7,7 @@ , substituteAll , wrapGAppsHook -, withGrass ? true +, withGrass ? false , withWebKit ? false , bison @@ -155,6 +155,7 @@ in mkDerivation rec { "-DWITH_3D=True" "-DWITH_PDAL=TRUE" "-DENABLE_TESTS=False" + (lib.cmakeBool "WITH_GRASS" withGrass) ] ++ lib.optional (!withWebKit) "-DWITH_QTWEBKIT=OFF" ++ lib.optional withGrass (let gmajor = lib.versions.major grass.version; |
