libpff: 20111114 -> 20231205

Antonio cd6364be c87b95e2

+6 -6
+6 -6
pkgs/by-name/li/libpff/package.nix
··· 6 6 autoreconfHook, 7 7 }: 8 8 9 - stdenv.mkDerivation rec { 9 + stdenv.mkDerivation (finalAttrs: { 10 10 pname = "libpff"; 11 - version = "20211114"; 11 + version = "20231205"; 12 12 13 13 src = fetchzip { 14 - url = "https://github.com/libyal/libpff/releases/download/${version}/libpff-alpha-${version}.tar.gz"; 15 - sha256 = "sha256-UmGRBgi78nDSuuOXi/WmODojWU5AbQGKNQwLseoh714="; 14 + url = "https://github.com/libyal/libpff/releases/download/${finalAttrs.version}/libpff-alpha-${finalAttrs.version}.tar.gz"; 15 + hash = "sha256-VrdfZRC2iwTfv3YrObQvIH9QZPTi9pUQoAyUcBVJyes="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ ··· 29 29 description = "Library and tools to access the Personal Folder File (PFF) and the Offline Folder File (OFF) format"; 30 30 homepage = "https://github.com/libyal/libpff"; 31 31 downloadPage = "https://github.com/libyal/libpff/releases"; 32 - changelog = "https://github.com/libyal/libpff/blob/${version}/ChangeLog"; 32 + changelog = "https://github.com/libyal/libpff/blob/${finalAttrs.version}/ChangeLog"; 33 33 license = lib.licenses.lgpl3Only; 34 34 maintainers = with lib.maintainers; [ hacker1024 ]; 35 35 }; 36 - } 36 + })