libetonyek: enable strictDeps / parallel building, clean up
This commit is contained in:
parent
211e8e1f35
commit
4657acacee
@ -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;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user