summary refs log tree commit diff
path: root/pkgs/development/libraries/libLAS/default.nix
blob: 20531adcd1c7201d66a5116473e133d63f7b39ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, boost, cmake, gdal, libgeotiff, libtiff, LASzip }:

stdenv.mkDerivation rec {
  name = "libLAS-1.8.1";

  src = fetchurl {

    url = "http://download.osgeo.org/liblas/${name}.tar.bz2";
    sha256 = "0xjfxb3ydvr2258ji3spzyf81g9caap19ql2pk91wiivqsc4mnws";
  };

  buildInputs = [ boost cmake gdal libgeotiff libtiff LASzip ];


  meta = {
    description = "LAS 1.0/1.1/1.2 ASPRS LiDAR data translation toolset";
    homepage = http://www.liblas.org;
    license = stdenv.lib.licenses.bsd3;
    platforms = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.michelk ];
  };
}