mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
83429fa1d0
see issue #43716
25 lines
726 B
Nix
25 lines
726 B
Nix
{stdenv, fetchurl, cmake, zlib, libxml2, eigen, python, cairo, pcre, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "openbabel-${version}";
|
|
version = "2.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/openbabel/openbabel/archive/openbabel-${stdenv.lib.replaceStrings ["."] ["-"] version}.tar.gz";
|
|
sha256 = "0xm7y859ivq2cp0q08mwshfxm0jq31xkyr4x8s0j6l7khf57yk2r";
|
|
};
|
|
|
|
# TODO : perl & python bindings;
|
|
# TODO : wxGTK: I have no time to compile
|
|
# TODO : separate lib and apps
|
|
buildInputs = [ zlib libxml2 eigen python cairo pcre ];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ ];
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|