2018-01-28 16:27:57 +00:00
|
|
|
{ stdenv, fetchurl, libwpg, libwpd, lcms, pkgconfig, librevenge, icu, boost, cppunit }:
|
2012-08-29 20:30:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-03 11:22:12 +00:00
|
|
|
name = "libcdr-0.1.5";
|
2012-08-29 20:30:15 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://dev-www.libreoffice.org/src/${name}.tar.xz";
|
2019-01-03 11:22:12 +00:00
|
|
|
sha256 = "0j1skr11jwvafn0l6p37v3i4lqc8wcn489g8f7c4mqwbk94mrkka";
|
2012-08-29 20:30:15 +00:00
|
|
|
};
|
|
|
|
|
2018-01-28 16:27:57 +00:00
|
|
|
buildInputs = [ libwpg libwpd lcms librevenge icu boost cppunit ];
|
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
|
|
|
|
|
|
|
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;
|
2018-08-08 19:16:42 +00:00
|
|
|
license = stdenv.lib.licenses.mpl20;
|
2012-08-29 20:30:15 +00:00
|
|
|
};
|
|
|
|
}
|