libetonyek: enable strictDeps / parallel building, clean up

This commit is contained in:
Stefan Frijters 2025-06-26 11:03:03 +02:00
parent 211e8e1f35
commit 4657acacee
No known key found for this signature in database
GPG Key ID: 7619A6BC6E7DFA6F

View File

@ -15,14 +15,14 @@
zlib, zlib,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "libetonyek"; pname = "libetonyek";
version = "0.1.12"; version = "0.1.12";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "LibreOffice"; owner = "LibreOffice";
repo = "libetonyek"; repo = "libetonyek";
rev = "libetonyek-${version}"; rev = "libetonyek-${finalAttrs.version}";
hash = "sha256-dvYbV+7IakgOkGsZ+zaW+qgn/QoD6Jwq/juaE+7iYug="; hash = "sha256-dvYbV+7IakgOkGsZ+zaW+qgn/QoD6Jwq/juaE+7iYug=";
}; };
@ -45,12 +45,16 @@ stdenv.mkDerivation rec {
configureFlags = [ "--with-mdds=2.1" ]; configureFlags = [ "--with-mdds=2.1" ];
meta = with lib; { strictDeps = true;
enableParallelBuilding = true;
meta = {
description = "Library and a set of tools for reading and converting Apple iWork documents (Keynote, Pages and Numbers)"; description = "Library and a set of tools for reading and converting Apple iWork documents (Keynote, Pages and Numbers)";
homepage = "https://github.com/LibreOffice/libetonyek"; homepage = "https://github.com/LibreOffice/libetonyek";
changelog = "https://github.com/LibreOffice/libetonyek/blob/${src.rev}/NEWS"; changelog = "https://github.com/LibreOffice/libetonyek/blob/${finalAttrs.src.rev}/NEWS";
license = licenses.mpl20; license = lib.licenses.mpl20;
maintainers = [ ]; maintainers = [ ];
platforms = platforms.all; platforms = lib.platforms.all;
}; };
} })