summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/gis
diff options
context:
space:
mode:
authorJohn Titor <50095635+JohnRTitor@users.noreply.github.com>2024-06-03 18:07:22 +0530
committerJohn Titor <50095635+JohnRTitor@users.noreply.github.com>2024-06-03 18:21:28 +0530
commit4fdaae34eb6b67b75347dee343974d58b0e0546d (patch)
tree41ae594d3c7ccc2d7593d4c1f99108e1b89a0a57 /pkgs/applications/gis
parentfc6e6b8ffb440710f291883c480e5b7f9c5dd6f9 (diff)
whitebox_tools: 2.2.0 -> 2.4.0
add missing dependencies add nix-update-script
Diffstat (limited to 'pkgs/applications/gis')
-rw-r--r--pkgs/applications/gis/whitebox-tools/default.nix27
1 files changed, 23 insertions, 4 deletions
diff --git a/pkgs/applications/gis/whitebox-tools/default.nix b/pkgs/applications/gis/whitebox-tools/default.nix
index b8ccd554f771..3dacb95ab7df 100644
--- a/pkgs/applications/gis/whitebox-tools/default.nix
+++ b/pkgs/applications/gis/whitebox-tools/default.nix
@@ -1,27 +1,46 @@
{ lib
, stdenv
+, cmake
, rustPlatform
+, pkg-config
, fetchFromGitHub
+, atk
+, gtk3
+, glib
+, openssl
, Security
+, nix-update-script
}:
rustPlatform.buildRustPackage rec {
pname = "whitebox_tools";
- version = "2.2.0";
+ version = "2.4.0";
src = fetchFromGitHub {
owner = "jblindsay";
repo = "whitebox-tools";
rev = "v${version}";
- hash = "sha256-DQ7BPRd90GNQVfD5NoVcxoyd2L3WZvIkecmRJVUY1R4=";
+ hash = "sha256-kvtfEEydwonoDux1VbAxqrF/Hf8Qh8mhprYnROGOC6g=";
};
- cargoHash = "sha256-BounjGGhbU5dxNV8WjVDQtV7YONNVRldc/t+wet1Gh8=";
+ cargoHash = "sha256-6v/3b6BHh/n7M2ZhLVKRvv0Va2xbLUSsxUb5paOStbQ=";
- buildInputs = lib.optional stdenv.isDarwin Security;
+ buildInputs = [
+ atk
+ glib
+ gtk3
+ openssl
+ ] ++ lib.optional stdenv.isDarwin Security;
+
+ nativeBuildInputs = [
+ cmake
+ pkg-config
+ ];
doCheck = false;
+ passthru.updateScript = nix-update-script {};
+
meta = with lib; {
homepage = "https://jblindsay.github.io/ghrg/WhiteboxTools/index.html";
description = "An advanced geospatial data analysis platform";