laszip: 3.4.4 -> 3.5.0, adopt (#515979)

This commit is contained in:
Sandro
2026-05-13 20:51:16 +00:00
committed by GitHub
+3 -3
View File
@@ -7,14 +7,14 @@
}:
stdenv.mkDerivation (finalAttrs: {
version = "3.4.4";
version = "3.5.0";
pname = "laszip";
src = fetchFromGitHub {
owner = "LASzip";
repo = "LASzip";
tag = finalAttrs.version;
hash = "sha256-v/oLU69zqDW1o1HTlay7GDh1Kbmv1rarII2Fz5HWCqg=";
hash = "sha256-xZ8IFnqrGt47lN+C6/ibgbIWqpObDf4RHPaGMXw0WZ4=";
};
hardeningDisable = [ "format" ]; # -Werror=format-security
@@ -31,7 +31,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://laszip.org";
changelog = "https://github.com/LASzip/LASzip/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.lgpl2;
maintainers = [ ];
maintainers = with lib.maintainers; [ hythera ];
platforms = lib.platforms.unix;
};
})