nixpkgs/pkgs/applications/science/math/gmsh/default.nix

32 lines
999 B
Nix
Raw Normal View History

2017-09-27 16:30:52 +01:00
{ stdenv, fetchurl, cmake, blas, liblapack, gfortran, gmm, fltk, libjpeg
, zlib, libGLU_combined, libGLU, xorg }:
2016-06-09 17:51:21 +01:00
let version = "3.0.6"; in
2016-06-09 17:51:21 +01:00
stdenv.mkDerivation {
name = "gmsh-${version}";
src = fetchurl {
url = "http://gmsh.info/src/gmsh-${version}-source.tgz";
sha256 = "0ywqhr0zmdhn8dvi6l8z1vkfycyv67fdrz6b95mb39np832bq04p";
2016-06-09 17:51:21 +01:00
};
# 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
2016-06-09 17:51:21 +01:00
xorg.libXft xorg.libXinerama xorg.libX11 xorg.libSM xorg.libICE
];
2017-09-27 16:30:52 +01:00
enableParallelBuilding = true;
2016-06-09 17:51:21 +01:00
meta = {
description = "A three-dimensional finite element mesh generator";
homepage = http://gmsh.info/;
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.gpl2Plus;
};
}