2021-02-23 06:49:12 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, libwpg, libwpd, lcms, pkg-config, librevenge, icu, boost, cppunit }:
|
2012-08-29 20:30:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-06-20 14:15:21 +00:00
|
|
|
pname = "libcdr";
|
2022-08-30 11:42:11 +00:00
|
|
|
version = "0.1.7";
|
2012-08-29 20:30:15 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-20 14:15:21 +00:00
|
|
|
url = "https://dev-www.libreoffice.org/src/${pname}-${version}.tar.xz";
|
2022-08-30 11:42:11 +00:00
|
|
|
hash = "sha256-VmYknWE0ZrmqHph+pBCcBDZYZuknfYD2zZZj6GuOzdQ=";
|
2012-08-29 20:30:15 +00:00
|
|
|
};
|
|
|
|
|
2022-08-30 11:42:11 +00:00
|
|
|
strictDeps = true;
|
2021-02-23 06:49:12 +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
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
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";
|
2020-04-01 01:11:51 +00: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 20:30:15 +00:00
|
|
|
};
|
|
|
|
}
|