whitebox-tools: init at 0.9.0

+28
+24
pkgs/applications/gis/whitebox-tools/default.nix
··· 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 18861 freerdp = freerdp_legacy; 18862 18862 }; 18863 18863 18864 + whitebox-tools = callPackage ../applications/gis/whitebox-tools { 18865 + inherit (darwin.apple_sdk.frameworks) Security; 18866 + }; 18867 + 18864 18868 windowlab = callPackage ../applications/window-managers/windowlab { }; 18865 18869 18866 18870 windowmaker = callPackage ../applications/window-managers/windowmaker { };