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

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

30 lines
717 B
Nix
Raw Normal View History

2021-12-21 11:41:33 +00:00
{ lib, stdenv, fetchurl, boost, pkg-config, cppunit, zlib, libwpg, libwpd, librevenge }:
stdenv.mkDerivation rec {
pname = "libmwaw";
version = "0.3.21";
src = fetchurl {
url = "mirror://sourceforge/libmwaw/libmwaw/libmwaw-${version}/libmwaw-${version}.tar.xz";
sha256 = "sha256-6HUBI6eNYblDzveLdzbIp/ILsKZJqhEkAhJPunlPwhw=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
2021-12-21 11:41:33 +00:00
boost
cppunit
zlib
libwpg
libwpd
librevenge
];
2021-07-22 15:00:44 +00:00
enableParallelBuilding = true;
2021-12-21 11:41:33 +00:00
meta = with lib; {
description = "Import library for some old mac text documents";
2021-12-21 11:41:33 +00:00
license = licenses.mpl20;
maintainers = with maintainers; [ raskin ];
platforms = platforms.unix;
};
}