whitebox-tools: cleanup

apply nixfmt-rfc-style
This commit is contained in:
John Titor 2024-06-03 18:18:09 +05:30
parent 4fdaae34eb
commit eb17962e97
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0

View File

@ -1,15 +1,16 @@
{ lib
, stdenv
, cmake
, rustPlatform
, pkg-config
, fetchFromGitHub
, atk
, gtk3
, glib
, openssl
, Security
, nix-update-script
{
lib,
stdenv,
cmake,
rustPlatform,
pkg-config,
fetchFromGitHub,
atk,
gtk3,
glib,
openssl,
Security,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
@ -39,12 +40,12 @@ rustPlatform.buildRustPackage rec {
doCheck = false;
passthru.updateScript = nix-update-script {};
passthru.updateScript = nix-update-script { };
meta = with lib; {
meta = {
homepage = "https://jblindsay.github.io/ghrg/WhiteboxTools/index.html";
description = "An advanced geospatial data analysis platform";
license = licenses.mit;
maintainers = [ maintainers.mpickering ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mpickering ];
};
}