python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libmwaw / default.nix
blob8f83c2055c62c2654703883c72390c00e0b782d9
1 { lib, stdenv, fetchurl, boost, pkg-config, cppunit, zlib, libwpg, libwpd, librevenge }:
3 stdenv.mkDerivation rec {
4   pname = "libmwaw";
5   version = "0.3.21";
7   src = fetchurl {
8     url = "mirror://sourceforge/libmwaw/libmwaw/libmwaw-${version}/libmwaw-${version}.tar.xz";
9     sha256 = "sha256-6HUBI6eNYblDzveLdzbIp/ILsKZJqhEkAhJPunlPwhw=";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [
14     boost
15     cppunit
16     zlib
17     libwpg
18     libwpd
19     librevenge
20   ];
21   enableParallelBuilding = true;
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   };