nixpkgs/pkgs/development/libraries/libcdr/default.nix

26 lines
779 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libwpg, libwpd, lcms, pkgconfig, librevenge, icu, boost }:
2012-08-29 20:30:15 +00:00
stdenv.mkDerivation rec {
2015-09-03 21:16:34 +00:00
name = "libcdr-0.1.1";
2012-08-29 20:30:15 +00:00
src = fetchurl {
url = "http://dev-www.libreoffice.org/src/${name}.tar.bz2";
2015-09-03 21:16:34 +00:00
sha256 = "0javd72wmaqd6vprsh3clm393b3idjdjzbb7vyn44li7yaxppzkj";
2012-08-29 20:30:15 +00:00
};
buildInputs = [ libwpg libwpd lcms librevenge icu boost ];
2012-08-29 20:30:15 +00:00
nativeBuildInputs = [ pkgconfig ];
2012-08-29 20:30:15 +00:00
configureFlags = if stdenv.cc.isClang
2015-04-08 04:05:06 +00:00
then [ "--disable-werror" ] else null;
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;
};
}