libLAS: initial expression

Closes #4233

authored by Michel Kuhlmann and committed by Mateusz Kowalczyk 9357bb51 daffd3c9

+24
+22
pkgs/development/libraries/libLAS/default.nix
··· 1 + { stdenv, fetchurl, boost, cmake, gdal, libgeotiff, libtiff, LASzip }: 2 + 3 + stdenv.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 + }
+2
pkgs/top-level/all-packages.nix
··· 5486 5486 5487 5487 libgtop = callPackage ../development/libraries/libgtop {}; 5488 5488 5489 + libLAS = callPackage ../development/libraries/libLAS { }; 5490 + 5489 5491 liblo = callPackage ../development/libraries/liblo { }; 5490 5492 5491 5493 liblrdf = librdf;