1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/libcdr/default.nix

32 lines
1 KiB
Nix
Raw Normal View History

2018-01-28 16:27:57 +00:00
{ stdenv, fetchurl, libwpg, libwpd, lcms, pkgconfig, librevenge, icu, boost, cppunit }:
2012-08-29 21:30:15 +01:00
stdenv.mkDerivation rec {
2018-01-28 16:27:57 +00:00
name = "libcdr-0.1.4";
2012-08-29 21:30:15 +01:00
src = fetchurl {
url = "https://dev-www.libreoffice.org/src/${name}.tar.xz";
2018-01-28 16:27:57 +00:00
sha256 = "0vd6likgk51j46llybkx4wq3674xzrhp0k82220pkx9x1aqfi9z7";
2012-08-29 21:30:15 +01:00
};
2018-01-28 16:27:57 +00:00
buildInputs = [ libwpg libwpd lcms librevenge icu boost cppunit ];
2012-08-29 21:30:15 +01:00
nativeBuildInputs = [ pkgconfig ];
2012-08-29 21:30:15 +01:00
2015-09-03 22:16:44 +01:00
# Boost 1.59 compatability fix
# Attempt removing when updating
postPatch = ''
sed -i 's,^CPPFLAGS.*,\0 -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED,' src/lib/Makefile.in
'';
configureFlags = stdenv.lib.optional stdenv.cc.isClang "--disable-werror";
2015-04-08 05:05:06 +01:00
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";
homepage = http://www.freedesktop.org/wiki/Software/libcdr;
platforms = stdenv.lib.platforms.all;
2018-08-08 20:16:42 +01:00
license = stdenv.lib.licenses.mpl20;
2012-08-29 21:30:15 +01:00
};
}