2014-08-11 21:39:48 +00:00
|
|
|
{ stdenv, fetchurl, libwpg, libwpd, lcms, pkgconfig, librevenge, icu, boost }:
|
2012-08-29 20:30:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-08-11 21:39:48 +00:00
|
|
|
name = "libcdr-0.1.0";
|
2012-08-29 20:30:15 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-11 21:39:48 +00:00
|
|
|
url = "http://dev-www.libreoffice.org/src/${name}.tar.bz2";
|
|
|
|
sha256 = "1l4glkyyxhzqq6j9n9cc01sf1q7xx8dd97cl3bwj8w4fp06ihv7g";
|
2012-08-29 20:30:15 +00:00
|
|
|
};
|
|
|
|
|
2014-08-11 21:39:48 +00:00
|
|
|
buildInputs = [ libwpg libwpd lcms librevenge icu boost ];
|
2012-08-29 20:30:15 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-08-29 20:30:15 +00:00
|
|
|
|
2015-04-08 04:05:06 +00:00
|
|
|
configureFlags = if (stdenv.cc.cc.isClang or false)
|
|
|
|
then [ "--disable-werror" ] else null;
|
|
|
|
|
2012-08-29 20:30:15 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|