2020-06-25 20:54:27 +02:00
|
|
|
{ stdenv, fetchurl, cmake }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "2.2.0";
|
|
|
|
pname = "LASzip";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/LASzip/LASzip/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "b8e8cc295f764b9d402bc587f3aac67c83ed8b39f1cb686b07c168579c61fbb2";
|
|
|
|
};
|
|
|
|
|
2020-06-26 00:43:15 +02:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2020-06-25 20:54:27 +02:00
|
|
|
|
2020-06-26 00:53:37 +02:00
|
|
|
meta = with stdenv.lib; {
|
2020-06-25 20:54:27 +02:00
|
|
|
description = "Turn quickly bulky LAS files into compact LAZ files without information loss";
|
2020-06-26 00:53:37 +02:00
|
|
|
homepage = "https://laszip.org";
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
maintainers = [ maintainers.michelk ];
|
|
|
|
platforms = platforms.unix;
|
2020-06-25 20:54:27 +02:00
|
|
|
};
|
|
|
|
}
|