Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
65 lines
1.0 KiB
Nix
65 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
boost,
|
|
libwpd,
|
|
libwpg,
|
|
pkg-config,
|
|
zlib,
|
|
gperf,
|
|
librevenge,
|
|
libxml2,
|
|
icu,
|
|
perl,
|
|
cppunit,
|
|
doxygen,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libvisio";
|
|
version = "0.1.8";
|
|
|
|
outputs = [
|
|
"out"
|
|
"bin"
|
|
"dev"
|
|
"doc"
|
|
];
|
|
|
|
src = fetchurl {
|
|
url = "https://dev-www.libreoffice.org/src/libvisio/${pname}-${version}.tar.xz";
|
|
hash = "sha256-tAmP+/TcuecSE/oKzdvZKPJ77TDbLYAjSBOxXVPQQFs=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
doxygen
|
|
perl
|
|
gperf
|
|
];
|
|
buildInputs = [
|
|
boost
|
|
libwpd
|
|
libwpg
|
|
zlib
|
|
librevenge
|
|
libxml2
|
|
icu
|
|
cppunit
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Library providing ability to interpret and import visio diagrams into various applications";
|
|
homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libvisio";
|
|
license = licenses.mpl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ nickcao ];
|
|
};
|
|
}
|