tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
whitebox-tools: init at 0.9.0
Matthew Pickering
7 years ago
97a47b81
7ef42d56
+28
2 changed files
expand all
collapse all
unified
split
pkgs
applications
gis
whitebox-tools
default.nix
top-level
all-packages.nix
+24
pkgs/applications/gis/whitebox-tools/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ stdenv, rustPlatform , fetchFromGitHub, Security }:
2
+
rustPlatform.buildRustPackage rec {
3
+
name = "whitebox_tools-${version}";
4
+
version = "0.9.0";
5
+
6
+
src = fetchFromGitHub {
7
+
owner = "jblindsay";
8
+
repo = "whitebox-tools";
9
+
rev = "6221cdf327be70f0ee4f2053b76bfa01c3f37caa";
10
+
sha256 = "1423ga964mz7qkl88vkcm8qfprsksx04aq4sz9v5ghnmdzzvl89x";
11
+
};
12
+
13
+
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
14
+
15
+
cargoSha256 = "1gbgirng21ak0kl3fiyr6lxwzrjd5v79gcrbzf941nb8y8rlvz7k";
16
+
17
+
meta = with stdenv.lib; {
18
+
description = "An advanced geospatial data analysis platform";
19
+
homepage = http://www.uoguelph.ca/~hydrogeo/WhiteboxTools/index.html;
20
+
license = licenses.mit;
21
+
maintainers = [ maintainers.mpickering ];
22
+
platforms = platforms.all;
23
+
};
24
+
}
+4
pkgs/top-level/all-packages.nix
···
18861
freerdp = freerdp_legacy;
18862
};
18863
0
0
0
0
18864
windowlab = callPackage ../applications/window-managers/windowlab { };
18865
18866
windowmaker = callPackage ../applications/window-managers/windowmaker { };
···
18861
freerdp = freerdp_legacy;
18862
};
18863
18864
+
whitebox-tools = callPackage ../applications/gis/whitebox-tools {
18865
+
inherit (darwin.apple_sdk.frameworks) Security;
18866
+
};
18867
+
18868
windowlab = callPackage ../applications/window-managers/windowlab { };
18869
18870
windowmaker = callPackage ../applications/window-managers/windowmaker { };