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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
807 B
Nix
Raw Normal View History

2021-02-23 06:49:12 +00:00
{ lib, stdenv, fetchurl, fetchpatch, libwpg, libwpd, lcms, pkg-config, librevenge, icu, boost, cppunit }:
2012-08-29 20:30:15 +00:00
stdenv.mkDerivation rec {
2021-06-20 14:15:21 +00:00
pname = "libcdr";
2022-08-30 11:42:11 +00:00
version = "0.1.7";
2012-08-29 20:30:15 +00:00
src = fetchurl {
2021-06-20 14:15:21 +00:00
url = "https://dev-www.libreoffice.org/src/${pname}-${version}.tar.xz";
2022-08-30 11:42:11 +00:00
hash = "sha256-VmYknWE0ZrmqHph+pBCcBDZYZuknfYD2zZZj6GuOzdQ=";
2012-08-29 20:30:15 +00:00
};
2022-08-30 11:42:11 +00:00
strictDeps = true;
2021-02-23 06:49:12 +00:00
2018-01-28 16:27:57 +00:00
buildInputs = [ libwpg libwpd lcms librevenge icu boost cppunit ];
2012-08-29 20:30:15 +00:00
nativeBuildInputs = [ pkg-config ];
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 = lib.platforms.all;
license = lib.licenses.mpl20;
2012-08-29 20:30:15 +00:00
};
}