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,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "libetonyek";
version = "0.1.12";
src = fetchFromGitHub {
owner = "LibreOffice";
repo = "libetonyek";
rev = "libetonyek-${version}";
rev = "libetonyek-${finalAttrs.version}";
hash = "sha256-dvYbV+7IakgOkGsZ+zaW+qgn/QoD6Jwq/juaE+7iYug=";
};
@ -45,12 +45,16 @@ stdenv.mkDerivation rec {
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)";
homepage = "https://github.com/LibreOffice/libetonyek";
changelog = "https://github.com/LibreOffice/libetonyek/blob/${src.rev}/NEWS";
license = licenses.mpl20;
changelog = "https://github.com/LibreOffice/libetonyek/blob/${finalAttrs.src.rev}/NEWS";
license = lib.licenses.mpl20;
maintainers = [ ];
platforms = platforms.all;
platforms = lib.platforms.all;
};
}
})