forked from mirrors/nixpkgs
c5e9e73029
* gmsh: 4.9.0 -> 4.9.2 (#152872) * gmsh: use https Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
30 lines
865 B
Nix
30 lines
865 B
Nix
{ lib, stdenv, fetchurl, cmake, blas, lapack, gfortran, gmm, fltk, libjpeg
|
|
, zlib, libGL, libGLU, xorg, opencascade-occt }:
|
|
|
|
assert (!blas.isILP64) && (!lapack.isILP64);
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gmsh";
|
|
version = "4.9.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://gmsh.info/src/gmsh-${version}-source.tgz";
|
|
sha256 = "sha256-26KB4DNYT12gfi2Y1656PcSBcjyybCxye2X8ILMBYYw=";
|
|
};
|
|
|
|
buildInputs = [ blas lapack gmm fltk libjpeg zlib libGLU libGL
|
|
libGLU xorg.libXrender xorg.libXcursor xorg.libXfixes xorg.libXext
|
|
xorg.libXft xorg.libXinerama xorg.libX11 xorg.libSM xorg.libICE
|
|
opencascade-occt
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake gfortran ];
|
|
|
|
meta = {
|
|
description = "A three-dimensional finite element mesh generator";
|
|
homepage = "https://gmsh.info/";
|
|
platforms = [ "x86_64-linux" ];
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|