libpff: 20111114 -> 20231205 (#427383)

This commit is contained in:
Pol Dellaiera
2025-07-22 11:09:30 +02:00
committed by GitHub
+6 -6
View File
@@ -6,13 +6,13 @@
autoreconfHook,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "libpff";
version = "20211114";
version = "20231205";
src = fetchzip {
url = "https://github.com/libyal/libpff/releases/download/${version}/libpff-alpha-${version}.tar.gz";
sha256 = "sha256-UmGRBgi78nDSuuOXi/WmODojWU5AbQGKNQwLseoh714=";
url = "https://github.com/libyal/libpff/releases/download/${finalAttrs.version}/libpff-alpha-${finalAttrs.version}.tar.gz";
hash = "sha256-VrdfZRC2iwTfv3YrObQvIH9QZPTi9pUQoAyUcBVJyes=";
};
nativeBuildInputs = [
@@ -29,8 +29,8 @@ stdenv.mkDerivation rec {
description = "Library and tools to access the Personal Folder File (PFF) and the Offline Folder File (OFF) format";
homepage = "https://github.com/libyal/libpff";
downloadPage = "https://github.com/libyal/libpff/releases";
changelog = "https://github.com/libyal/libpff/blob/${version}/ChangeLog";
changelog = "https://github.com/libyal/libpff/blob/${finalAttrs.version}/ChangeLog";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ hacker1024 ];
};
}
})