nixpkgs/pkgs/development/libraries/libodfgen/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
695 B
Nix
Raw Normal View History

2021-12-21 11:54:40 +00:00
{ lib, stdenv, fetchurl, boost, pkg-config, cppunit, zlib, libwpg, libwpd, librevenge }:
stdenv.mkDerivation rec {
pname = "libodfgen";
version = "0.1.7";
src = fetchurl {
url = "mirror://sourceforge/project/libwpd/libodfgen/libodfgen-${version}/libodfgen-${version}.tar.xz";
sha256 = "sha256-Mj5JH5VsjKKrsSyZjjUGcJMKMjF7+WYrBhXdSzkiuDE=";
};
2021-12-21 11:54:40 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [
2021-12-21 11:54:40 +00:00
boost
cppunit
zlib
libwpg
libwpd
librevenge
];
2021-12-21 11:54:40 +00:00
meta = with lib; {
description = "A base library for generating ODF documents";
2021-12-21 11:54:40 +00:00
license = licenses.mpl20;
maintainers = with maintainers; [ raskin ];
platforms = platforms.unix;
};
}