LAStools: init at 180812

This commit is contained in:
Matthew Pickering 2018-08-21 21:11:44 +00:00 committed by StephenWithPH
parent bd97a6ac7d
commit 7a9c3739a4
No known key found for this signature in database
GPG Key ID: 00D80E6A83C90F2C
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, cmake, fetchurl}:
stdenv.mkDerivation rec {
version = "180812";
name = "LAStools-${version}";
src = fetchFromGitHub {
owner = "LAStools";
repo = "LAStools";
rev = "162cf032f25cac492712a8568a08b224a5fb40c2";
sha256 = "117c9csbfwsx424ha695l7d99cswi316k8q338mzk1lxlk8p3xbz";
};
nativeBuildInputs = [cmake];
meta = {
description = "Efficient tools for LiDAR processing.";
homepage = https://www.laszip.org;
license = stdenv.lib.licenses.lgpl2;
maintainers = [ stdenv.lib.maintainers.mpickering ];
platforms = stdenv.lib.platforms.unix;
};
}

View File

@ -13461,6 +13461,8 @@ in
lasso = callPackage ../development/libraries/lasso { };
LAStools = callPackage ../development/libraries/LAStools { };
LASzip = callPackage ../development/libraries/LASzip { };
LASzip2 = callPackage ../development/libraries/LASzip/LASzip2.nix { };