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