Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 23 lines 580 B view raw
1{ lib, stdenv, fetchFromGitHub, cmake }: 2 3stdenv.mkDerivation rec { 4 version = "2.2.0"; 5 pname = "LASzip"; 6 7 src = fetchFromGitHub { 8 owner = "LASzip"; 9 repo = "LASzip"; 10 rev = "v${version}"; 11 sha256 = "sha256-TXzse4oLjNX5R2xDR721iV+gW/rP5z3Zciv4OgxfeqA="; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 16 meta = with lib; { 17 description = "Turn quickly bulky LAS files into compact LAZ files without information loss"; 18 homepage = "https://laszip.org"; 19 license = licenses.lgpl2; 20 maintainers = [ maintainers.michelk ]; 21 platforms = platforms.unix; 22 }; 23}