nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 17.09 21 lines 608 B view raw
1{ stdenv, fetchurl, cmake }: 2 3stdenv.mkDerivation rec { 4 version = "2.2.0"; 5 name = "LASzip-${version}"; 6 7 src = fetchurl { 8 url = "https://github.com/LASzip/LASzip/archive/v${version}.tar.gz"; 9 sha256 = "b8e8cc295f764b9d402bc587f3aac67c83ed8b39f1cb686b07c168579c61fbb2"; 10 }; 11 12 buildInputs = [cmake]; 13 14 meta = { 15 description = "Turn quickly bulky LAS files into compact LAZ files without information loss"; 16 homepage = http://www.laszip.org; 17 license = stdenv.lib.licenses.lgpl2; 18 maintainers = [ stdenv.lib.maintainers.michelk ]; 19 platforms = stdenv.lib.platforms.linux; 20 }; 21}