Openbabel added. There are some TODO's in its nix-expression.

svn path=/nixpkgs/trunk/; revision=9635
This commit is contained in:
Yury G. Kudryashov 2007-11-11 16:15:29 +00:00
parent b4c26d6ed9
commit 2b07939b70
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,13 @@
args: with args;
stdenv.mkDerivation {
name = "openbabel-2.1.1";
src = fetchurl {
url = mirror://sf/openbabel/openbabel-2.1.1.tar.gz;
sha256 = "1rgvci796a7bmc49ih26ma7c248d32w6drs3cwljpjk0dllsqdif";
};
# TODO : perl & python bindings;
# TODO : wxGTK: I have no time to compile
# TODO : separate lib and apps
buildInputs = [zlib libxml2];
configureFlags = "--enable-shared --disable-static";
}

View File

@ -2117,6 +2117,10 @@ rec {
inherit fetchurl stdenv alsaLib autoconf automake libtool;
};
openbabel = import ../development/libraries/openbabel {
inherit fetchurl stdenv zlib libxml2;
};
openexr = import ../development/libraries/openexr {
inherit fetchurl stdenv ilmbase zlib pkgconfig;
};