ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
22 lines
559 B
Nix
22 lines
559 B
Nix
{ stdenv, fetchurl, cmake, qt4, zlib, eigen, openbabel, pkgconfig, mesa, libX11 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "avogadro-1.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/avogadro/${name}.tar.bz2";
|
|
sha256 = "0s44r78vm7hf4cs13d2qki3gf178gjj1ihph6rs04g6s4figvdpg";
|
|
};
|
|
|
|
buildInputs = [ qt4 eigen zlib openbabel mesa libX11 ];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
NIX_CFLAGS_COMPILE = "-include ${mesa}/include/GL/glu.h";
|
|
|
|
meta = {
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
inherit (qt4.meta) platforms;
|
|
};
|
|
}
|