mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 15:41:40 +00:00
30 lines
864 B
Nix
30 lines
864 B
Nix
{ stdenv, fetchurl, cmake, qt4, zlib, eigen, openbabel, pkgconfig, libGLU, libGL, libX11, doxygen }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "avogadro-1.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/avogadro/${name}.tar.bz2";
|
|
sha256 = "050ag9p4vg7jg8hj1wqfv7lsm6ar2isxjw2vw85s49vsl7g7nvzy";
|
|
};
|
|
|
|
buildInputs = [ qt4 eigen zlib openbabel libGL libGLU libX11 ];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig doxygen ];
|
|
|
|
NIX_CFLAGS_COMPILE = "-include ${libGLU.dev}/include/GL/glu.h";
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
url = "https://data.gpo.zugaina.org/fusion809/sci-chemistry/avogadro/files/avogadro-1.1.0-xlibs.patch";
|
|
sha256 = "1p113v19z3zwr9gxj2k599f8p97a8rwm93pa4amqvd0snn31mw0k";
|
|
})
|
|
];
|
|
|
|
meta = {
|
|
description = "Molecule editor and visualizer";
|
|
maintainers = [ ];
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
|
};
|
|
}
|