about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libvisio
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libvisio')
-rw-r--r--nixpkgs/pkgs/development/libraries/libvisio/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libvisio/default.nix b/nixpkgs/pkgs/development/libraries/libvisio/default.nix
new file mode 100644
index 000000000000..b9856e90edc9
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libvisio/default.nix
@@ -0,0 +1,42 @@
+{ lib
+, stdenv
+, fetchurl
+, boost
+, libwpd
+, libwpg
+, pkg-config
+, zlib
+, gperf
+, librevenge
+, libxml2
+, icu
+, perl
+, cppunit
+, doxygen
+}:
+
+stdenv.mkDerivation rec {
+  pname = "libvisio";
+  version = "0.1.7";
+
+  outputs = [ "out" "bin" "dev" "doc" ];
+
+  src = fetchurl {
+    url = "https://dev-www.libreoffice.org/src/libvisio/${pname}-${version}.tar.xz";
+    sha256 = "0k7adcbbf27l7n453cca1m6s9yj6qvb5j6bsg2db09ybf3w8vbwg";
+  };
+
+  strictDeps = true;
+  nativeBuildInputs = [ pkg-config doxygen perl gperf ];
+  buildInputs = [ boost libwpd libwpg zlib librevenge libxml2 icu cppunit ];
+
+  doCheck = true;
+
+  meta = with lib; {
+    description = "A 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 ];
+  };
+}