summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/gis
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2019-09-15 13:18:54 +0200
committerVladimír Čunát <v@cunat.cz>2019-09-15 13:18:54 +0200
commitb6c6e1f9e8f72ad7caf3b7daec327f77a16ffba1 (patch)
tree1665938bf023545db2afcf42d924a47d7f2918b2 /pkgs/applications/gis
parent9f8a7d26798ced69f3185a59383bbb3db6b06bde (diff)
parentc860babfe6a512aa7c7e83751547347a137ecd67 (diff)
Merge branch 'master' into staging-next
Diffstat (limited to 'pkgs/applications/gis')
-rw-r--r--pkgs/applications/gis/whitebox-tools/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/applications/gis/whitebox-tools/default.nix b/pkgs/applications/gis/whitebox-tools/default.nix
index 4c7f9cde5ce7..84d7f3ddb499 100644
--- a/pkgs/applications/gis/whitebox-tools/default.nix
+++ b/pkgs/applications/gis/whitebox-tools/default.nix
@@ -1,18 +1,21 @@
{ stdenv, rustPlatform , fetchFromGitHub, Security }:
rustPlatform.buildRustPackage rec {
pname = "whitebox_tools";
- version = "0.9.0";
+ version = "0.16.0";
src = fetchFromGitHub {
owner = "jblindsay";
repo = "whitebox-tools";
- rev = "6221cdf327be70f0ee4f2053b76bfa01c3f37caa";
- sha256 = "1423ga964mz7qkl88vkcm8qfprsksx04aq4sz9v5ghnmdzzvl89x";
+ rev = "v${version}";
+ sha256 = "1vs4hf2x3qjnffs9kjx56rzl67kpcy8xvng6p0r9fp9mfnblxg6j";
};
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
- cargoSha256 = "11m13h9b75xz8dfisfcykar53qsl1crrp3l75s73gkkkvczlfd24";
+ cargoSha256 = "1y3vk8bzsaisx7wrncjxcqdh355f2wk4n59vq5qgj37fph2zpy7f";
+
+ # failures: structures::polyline::test::test_polyline_split
+ doCheck = false;
meta = with stdenv.lib; {
description = "An advanced geospatial data analysis platform";