summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.7/kdeedu/kalzium.nix
blob: d7d9b403b1a4bfe44f2128684c5518543719b593 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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";
  };
}