365a2e5acc
Semi-automatic update. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 3.0.6 with grep in /nix/store/ha4gl4kswiq7pz4chb1ba9ixb51rcdsn-gmsh-3.0.6 - found 3.0.6 in filename of file in /nix/store/ha4gl4kswiq7pz4chb1ba9ixb51rcdsn-gmsh-3.0.6
31 lines
999 B
Nix
31 lines
999 B
Nix
{ stdenv, fetchurl, cmake, blas, liblapack, gfortran, gmm, fltk, libjpeg
|
|
, zlib, libGLU_combined, libGLU, xorg }:
|
|
|
|
let version = "3.0.6"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gmsh-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://gmsh.info/src/gmsh-${version}-source.tgz";
|
|
sha256 = "0ywqhr0zmdhn8dvi6l8z1vkfycyv67fdrz6b95mb39np832bq04p";
|
|
};
|
|
|
|
# The original CMakeLists tries to use some version of the Lapack lib
|
|
# that is supposed to work without Fortran but didn't for me.
|
|
patches = [ ./CMakeLists.txt.patch ];
|
|
|
|
buildInputs = [ cmake blas liblapack gfortran gmm fltk libjpeg zlib libGLU_combined
|
|
libGLU xorg.libXrender xorg.libXcursor xorg.libXfixes xorg.libXext
|
|
xorg.libXft xorg.libXinerama xorg.libX11 xorg.libSM xorg.libICE
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "A three-dimensional finite element mesh generator";
|
|
homepage = http://gmsh.info/;
|
|
platforms = stdenv.lib.platforms.all;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|