8abd44f249
* Remove a lot of code duplication. * Package almost all (except for smoke-based bindings). svn path=/nixpkgs/trunk/; revision=28597
16 lines
429 B
Nix
16 lines
429 B
Nix
{ kde, kdelibs, facile, ocaml, eigen, openbabel, avogadro }:
|
|
kde {
|
|
buildInputs = [ kdelibs facile ocaml eigen openbabel avogadro ];
|
|
|
|
prePatch = ''
|
|
cp -v ${./FindLibfacile.cmake} cmake/modules/FindLibfacile.cmake
|
|
sed -e 's/\+facile/''${LIBFACILE_INCLUDE_DIR}/' -i src/CMakeOCamlInstructions.cmake
|
|
'';
|
|
|
|
patches = [ ./kalzium-feature-log.patch ];
|
|
|
|
meta = {
|
|
description = "Periodic Table of Elements";
|
|
};
|
|
}
|