lol
1{ lib, stdenv, fetchurl, boost, pkg-config, cppunit, zlib, libwpg, libwpd, librevenge }:
2
3stdenv.mkDerivation rec {
4 pname = "libmwaw";
5 version = "0.3.21";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/libmwaw/libmwaw/libmwaw-${version}/libmwaw-${version}.tar.xz";
9 sha256 = "sha256-6HUBI6eNYblDzveLdzbIp/ILsKZJqhEkAhJPunlPwhw=";
10 };
11
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [
14 boost
15 cppunit
16 zlib
17 libwpg
18 libwpd
19 librevenge
20 ];
21 enableParallelBuilding = true;
22
23 meta = with lib; {
24 description = "Import library for some old mac text documents";
25 license = licenses.mpl20;
26 maintainers = with maintainers; [ raskin ];
27 platforms = platforms.unix;
28 };
29}