2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, libwpg, libwpd, lcms, pkg-config, librevenge, icu, boost, cppunit }:
|
2012-08-29 22:30:15 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-08 17:23:03 +01:00
|
|
|
name = "libcdr-0.1.6";
|
2012-08-29 22:30:15 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://dev-www.libreoffice.org/src/${name}.tar.xz";
|
2020-02-08 17:23:03 +01:00
|
|
|
sha256 = "0qgqlw6i25zfq1gf7f6r5hrhawlrgh92sg238kjpf2839aq01k81";
|
2012-08-29 22:30:15 +02:00
|
|
|
};
|
|
|
|
|
2018-01-28 17:27:57 +01:00
|
|
|
buildInputs = [ libwpg libwpd lcms librevenge icu boost cppunit ];
|
2012-08-29 22:30:15 +02:00
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2012-08-29 22:30:15 +02: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 03:11:51 +02:00
|
|
|
homepage = "http://www.freedesktop.org/wiki/Software/libcdr";
|
2021-01-21 18:00:13 +01:00
|
|
|
platforms = lib.platforms.all;
|
|
|
|
license = lib.licenses.mpl20;
|
2012-08-29 22:30:15 +02:00
|
|
|
};
|
|
|
|
}
|