gmsh: 4.2.3 -> 4.3.0 (#62420)

* gmsh: 4.2.3 -> 4.3.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gmsh/versions

* gmsh: move cmake to nativeBuildInputs
This commit is contained in:
R. RyanTM 2019-06-07 09:01:57 -07:00 committed by Renaud
parent af940c1f87
commit 5bbc9be100

View file

@ -1,22 +1,22 @@
{ stdenv, fetchurl, cmake, openblasCompat, gfortran, gmm, fltk, libjpeg
, zlib, libGLU_combined, libGLU, xorg }:
let version = "4.2.3"; in
let version = "4.3.0"; in
stdenv.mkDerivation {
name = "gmsh-${version}";
src = fetchurl {
url = "http://gmsh.info/src/gmsh-${version}-source.tgz";
sha256 = "0n18wmj8i4m1pzri3r0676lx1427zf8qmsrgnn07drv6if1cia2q";
sha256 = "0ab4p2dilk4rfw1qc817rmy56qkhxaajpnqdnvahbhcbf3skd8jl";
};
buildInputs = [ cmake openblasCompat gmm fltk libjpeg zlib libGLU_combined
buildInputs = [ openblasCompat 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
];
nativeBuildInputs = [ gfortran ];
nativeBuildInputs = [ cmake gfortran ];
enableParallelBuilding = true;