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
···
1
1
+
{ stdenv, rustPlatform , fetchFromGitHub, Security }:
2
2
+
rustPlatform.buildRustPackage rec {
3
3
+
name = "whitebox_tools-${version}";
4
4
+
version = "0.9.0";
5
5
+
6
6
+
src = fetchFromGitHub {
7
7
+
owner = "jblindsay";
8
8
+
repo = "whitebox-tools";
9
9
+
rev = "6221cdf327be70f0ee4f2053b76bfa01c3f37caa";
10
10
+
sha256 = "1423ga964mz7qkl88vkcm8qfprsksx04aq4sz9v5ghnmdzzvl89x";
11
11
+
};
12
12
+
13
13
+
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
14
14
+
15
15
+
cargoSha256 = "1gbgirng21ak0kl3fiyr6lxwzrjd5v79gcrbzf941nb8y8rlvz7k";
16
16
+
17
17
+
meta = with stdenv.lib; {
18
18
+
description = "An advanced geospatial data analysis platform";
19
19
+
homepage = http://www.uoguelph.ca/~hydrogeo/WhiteboxTools/index.html;
20
20
+
license = licenses.mit;
21
21
+
maintainers = [ maintainers.mpickering ];
22
22
+
platforms = platforms.all;
23
23
+
};
24
24
+
}
+4
pkgs/top-level/all-packages.nix
···
18861
18861
freerdp = freerdp_legacy;
18862
18862
};
18863
18863
18864
18864
+
whitebox-tools = callPackage ../applications/gis/whitebox-tools {
18865
18865
+
inherit (darwin.apple_sdk.frameworks) Security;
18866
18866
+
};
18867
18867
+
18864
18868
windowlab = callPackage ../applications/window-managers/windowlab { };
18865
18869
18866
18870
windowmaker = callPackage ../applications/window-managers/windowmaker { };