laszip: 3.4.3 -> 3.4.4 (#445076)

This commit is contained in:
Grimmauld
2025-09-23 22:01:59 +00:00
committed by GitHub
+4 -2
View File
@@ -7,16 +7,18 @@
}:
stdenv.mkDerivation (finalAttrs: {
version = "3.4.3";
version = "3.4.4";
pname = "laszip";
src = fetchFromGitHub {
owner = "LASzip";
repo = "LASzip";
rev = finalAttrs.version;
hash = "sha256-9fzal54YaocONtguOCxnP7h1LejQPQ0dKFiCzfvTjCY=";
hash = "sha256-v/oLU69zqDW1o1HTlay7GDh1Kbmv1rarII2Fz5HWCqg=";
};
hardeningDisable = [ "format" ]; # -Werror=format-security
nativeBuildInputs = [
cmake
]