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