python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libvisio / default.nix
blob42051fe66a63b3061e3a76e5487a3fb0cc5184dd
1 { lib, stdenv, fetchurl, boost, libwpd, libwpg, pkg-config, zlib, gperf
2 , librevenge, libxml2, icu, perl, cppunit, doxygen
3 }:
5 stdenv.mkDerivation rec {
6   pname = "libvisio";
7   version = "0.1.7";
9   outputs = [ "out" "bin" "dev" "doc" ];
11   src = fetchurl {
12     url = "https://dev-www.libreoffice.org/src/libvisio/${pname}-${version}.tar.xz";
13     sha256 = "0k7adcbbf27l7n453cca1m6s9yj6qvb5j6bsg2db09ybf3w8vbwg";
14   };
16   nativeBuildInputs = [ pkg-config cppunit doxygen ];
17   buildInputs = [ boost libwpd libwpg zlib gperf librevenge libxml2 icu perl ];
19   configureFlags = [
20     "--disable-werror"
21   ];
23   doCheck = true;
25   meta = with lib; {
26     description = "A library providing ability to interpret and import visio diagrams into various applications";
27     homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libvisio";
28     license = licenses.mpl20;
29     platforms = platforms.unix;
30   };