diff options
Diffstat (limited to 'pkgs/applications/gis/whitebox-tools/default.nix')
-rw-r--r-- | pkgs/applications/gis/whitebox-tools/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/gis/whitebox-tools/default.nix b/pkgs/applications/gis/whitebox-tools/default.nix index df2343d8813e..1409410d07ac 100644 --- a/pkgs/applications/gis/whitebox-tools/default.nix +++ b/pkgs/applications/gis/whitebox-tools/default.nix @@ -31,7 +31,7 @@ rustPlatform.buildRustPackage rec { glib gtk3 openssl - ] ++ lib.optional stdenv.isDarwin Security; + ] ++ lib.optional stdenv.hostPlatform.isDarwin Security; nativeBuildInputs = [ cmake @@ -46,6 +46,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://jblindsay.github.io/ghrg/WhiteboxTools/index.html"; description = "Advanced geospatial data analysis platform"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ mpickering ]; + maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ mpickering ]); }; } |