about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libcdr
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libcdr')
-rw-r--r--nixpkgs/pkgs/development/libraries/libcdr/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libcdr/default.nix b/nixpkgs/pkgs/development/libraries/libcdr/default.nix
new file mode 100644
index 000000000000..5e46f4dc699d
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libcdr/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, libwpg, libwpd, lcms, pkgconfig, librevenge, icu, boost, cppunit }:
+
+stdenv.mkDerivation rec {
+  name = "libcdr-0.1.4";
+
+  src = fetchurl {
+    url = "https://dev-www.libreoffice.org/src/${name}.tar.xz";
+    sha256 = "0vd6likgk51j46llybkx4wq3674xzrhp0k82220pkx9x1aqfi9z7";
+  };
+
+  buildInputs = [ libwpg libwpd lcms librevenge icu boost cppunit ];
+
+  nativeBuildInputs = [ pkgconfig ];
+
+  # Boost 1.59 compatability fix
+  # Attempt removing when updating
+  postPatch = ''
+    sed -i 's,^CPPFLAGS.*,\0 -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED,' src/lib/Makefile.in
+  '';
+
+  configureFlags = stdenv.lib.optional stdenv.cc.isClang "--disable-werror";
+
+  CXXFLAGS="--std=gnu++0x"; # For c++11 constants in lcms2.h
+
+  meta = {
+    description = "A library providing ability to interpret and import Corel Draw drawings into various applications";
+    homepage = http://www.freedesktop.org/wiki/Software/libcdr;
+    platforms = stdenv.lib.platforms.all;
+    license = stdenv.lib.licenses.mpl20;
+  };
+}