openbabel-2.3.1, depend on cairo

svn path=/nixpkgs/trunk/; revision=31540
This commit is contained in:
Yury G. Kudryashov 2012-01-14 18:02:54 +00:00
parent cf207c3e83
commit e7dccbfcb8

View File

@ -1,19 +1,19 @@
{stdenv, fetchurl, cmake, zlib, libxml2, eigen, python }: {stdenv, fetchurl, cmake, zlib, libxml2, eigen, python, cairo, pkgconfig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "openbabel-2.3.0"; name = "openbabel-2.3.1";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/openbabel/${name}.tar.gz"; url = "mirror://sourceforge/openbabel/${name}.tar.gz";
sha256 = "1yv1z04il8q6nhcc3l9019aj7nzs3bfm667s2vkg5cc3dljwpbbd"; sha256 = "18yprqsk0fi1ri4fmvpx2ym6gx9fp3by681pl3jffpjqmz4qnbly";
}; };
# TODO : perl & python bindings; # TODO : perl & python bindings;
# TODO : wxGTK: I have no time to compile # TODO : wxGTK: I have no time to compile
# TODO : separate lib and apps # TODO : separate lib and apps
buildInputs = [ zlib libxml2 eigen python ]; buildInputs = [ zlib libxml2 eigen python cairo ];
buildNativeInputs = [ cmake ]; buildNativeInputs = [ cmake pkgconfig ];
meta = { meta = {
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;