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

24 lines
755 B
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 {
2020-02-08 16:23:03 +00:00
name = "libcdr-0.1.6";
2012-08-29 21:30:15 +01:00
src = fetchurl {
url = "https://dev-www.libreoffice.org/src/${name}.tar.xz";
2020-02-08 16:23:03 +00:00
sha256 = "0qgqlw6i25zfq1gf7f6r5hrhawlrgh92sg238kjpf2839aq01k81";
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
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";
2012-08-29 21:30:15 +01:00
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
};
}