mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-09 05:33:25 +00:00
ce77225e21
This is the thing you want to look at.
17 lines
283 B
Nix
17 lines
283 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
ocaml,
|
|
eigen,
|
|
openbabel,
|
|
qtsvg,
|
|
qtscxml,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kalzium";
|
|
|
|
# FIXME: look into how to make it find libfacile
|
|
extraNativeBuildInputs = [pkg-config ocaml];
|
|
extraBuildInputs = [eigen openbabel qtsvg qtscxml];
|
|
}
|