summary refs log tree commit diff
path: root/pkgs/development/libraries/libcdr/default.nix
blob: d2d6864056043fa7f46c4866f5e38cd845199dea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, libwpg, libwpd, lcms2, pkgconfig }:

stdenv.mkDerivation rec {
  name = "libcdr-0.0.8";

  src = fetchurl {
    url = "http://dev-www.libreoffice.org/src/${name}.tar.xz";
    sha256 = "117a8gp29xs3kin6kaisb3frsx8dwrsjgs4wq4y5hjqprzy6lwz0";
  };

  buildInputs = [ libwpg libwpd lcms2 ];

  nativeBuildInputs = [ pkgconfig ];

  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;
  };
}