nixpkgs/pkgs/by-name/li/libetonyek/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

55 lines
1.1 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
# fails on older Boost due to https://github.com/boostorg/phoenix/issues/111
, boost184
, cppunit
, glm
, gperf
, liblangtag
, librevenge
, libxml2
, mdds
}:
stdenv.mkDerivation rec {
pname = "libetonyek";
version = "0.1.10";
src = fetchFromGitHub {
owner = "LibreOffice";
repo = "libetonyek";
rev = "libetonyek-${version}";
hash = "sha256-wgyeQj1sY78sbbZT+NZuq9HEKB+ta7wwipbfN3JkyyU=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
];
buildInputs = [
boost184
cppunit
glm
gperf
liblangtag
librevenge
libxml2
mdds
];
configureFlags = ["--with-mdds=2.1"];
meta = with lib; {
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;
maintainers = [ ];
platforms = platforms.all;
};
}