2021-02-23 06:49:12 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, libwpg, libwpd, lcms, pkg-config, librevenge, icu, boost, cppunit }:
|
2012-08-29 21:30:15 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-08 16:23:03 +00:00
|
|
|
name = "libcdr-0.1.6";
|
2012-08-29 21:30:15 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://dev-www.libreoffice.org/src/${name}.tar.xz";
|
2020-02-08 16:23:03 +00:00
|
|
|
sha256 = "0qgqlw6i25zfq1gf7f6r5hrhawlrgh92sg238kjpf2839aq01k81";
|
2012-08-29 21:30:15 +01:00
|
|
|
};
|
|
|
|
|
2021-02-23 06:49:12 +00:00
|
|
|
patches = [
|
|
|
|
# Fix build with icu 68
|
|
|
|
# Remove in next release
|
|
|
|
(fetchpatch {
|
|
|
|
name = "libcdr-fix-icu-68";
|
|
|
|
url = "https://cgit.freedesktop.org/libreoffice/libcdr/patch/?id=bf3e7f3bbc414d4341cf1420c99293debf1bd894";
|
|
|
|
sha256 = "0cgra10p8ibgwn8y5q31jrpan317qj0ribzjs4jq0bwavjq92w2k";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-01-28 16:27:57 +00:00
|
|
|
buildInputs = [ libwpg libwpd lcms librevenge icu boost cppunit ];
|
2012-08-29 21:30:15 +01:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2012-08-29 21:30:15 +01: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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.freedesktop.org/wiki/Software/libcdr";
|
2021-01-21 17:00:13 +00:00
|
|
|
platforms = lib.platforms.all;
|
|
|
|
license = lib.licenses.mpl20;
|
2012-08-29 21:30:15 +01:00
|
|
|
};
|
|
|
|
}
|