mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
a9850760d2
Co-authored-by: Jon <jonringer@users.noreply.github.com>
22 lines
586 B
Nix
22 lines
586 B
Nix
{ 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";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Turn quickly bulky LAS files into compact LAZ files without information loss";
|
|
homepage = "https://laszip.org";
|
|
license = licenses.lgpl2;
|
|
maintainers = [ maintainers.michelk ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|