1{ stdenv, fetchurl, boost, cmake, gdal, libgeotiff, libtiff, LASzip }:
2
3stdenv.mkDerivation rec {
4 name = "libLAS-1.8.0";
5
6 src = fetchurl {
7
8 url = "http://download.osgeo.org/liblas/${name}.tar.bz2";
9 md5 = "599881281d45db4ce9adb2d75458391e";
10 };
11
12 buildInputs = [ boost cmake gdal libgeotiff libtiff LASzip];
13
14
15 meta = {
16 description = "LAS 1.0/1.1/1.2 ASPRS LiDAR data translation toolset";
17 homepage = http://www.liblas.org;
18 license = stdenv.lib.licenses.bsd3;
19 platforms = stdenv.lib.platforms.linux;
20 maintainers = [ stdenv.lib.maintainers.michelk ];
21 };
22}