summary refs log tree commit diff
path: root/pkgs/development/libraries/openbabel/default.nix
blob: 10c8dcf0a684e3bca8cd3f21891108d58bc08354 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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";
}