summary refs log tree commit diff
path: root/pkgs/applications/science/math
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-01-07 16:18:15 -0800
committerGitHub <noreply@github.com>2022-01-08 01:18:15 +0100
commitc5e9e73029beb7cc25c10e8c712e1874b1c53d1a (patch)
tree80ea1c3bbf62a03a1264e02207abd4b837ff309e /pkgs/applications/science/math
parentec66a6a08f2f5f50eaa92e16eec19f0a119a108e (diff)
downloadnixpkgs-c5e9e73029beb7cc25c10e8c712e1874b1c53d1a.tar
nixpkgs-c5e9e73029beb7cc25c10e8c712e1874b1c53d1a.tar.gz
nixpkgs-c5e9e73029beb7cc25c10e8c712e1874b1c53d1a.tar.bz2
nixpkgs-c5e9e73029beb7cc25c10e8c712e1874b1c53d1a.tar.lz
nixpkgs-c5e9e73029beb7cc25c10e8c712e1874b1c53d1a.tar.xz
nixpkgs-c5e9e73029beb7cc25c10e8c712e1874b1c53d1a.tar.zst
nixpkgs-c5e9e73029beb7cc25c10e8c712e1874b1c53d1a.zip
gmsh: 4.9.0 -> 4.9.2
* gmsh: 4.9.0 -> 4.9.2 (#152872)

* gmsh: use https

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
Diffstat (limited to 'pkgs/applications/science/math')
-rw-r--r--pkgs/applications/science/math/gmsh/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/science/math/gmsh/default.nix b/pkgs/applications/science/math/gmsh/default.nix
index 0a48d813e91..fe34a82679a 100644
--- a/pkgs/applications/science/math/gmsh/default.nix
+++ b/pkgs/applications/science/math/gmsh/default.nix
@@ -5,11 +5,11 @@ assert (!blas.isILP64) && (!lapack.isILP64);
 
 stdenv.mkDerivation rec {
   pname = "gmsh";
-  version = "4.9.0";
+  version = "4.9.2";
 
   src = fetchurl {
-    url = "http://gmsh.info/src/gmsh-${version}-source.tgz";
-    sha256 = "sha256-uO8TPJtm/+Et8XR+ctSs8Z8esenNlesPV3y8QIHZvqM=";
+    url = "https://gmsh.info/src/gmsh-${version}-source.tgz";
+    sha256 = "sha256-26KB4DNYT12gfi2Y1656PcSBcjyybCxye2X8ILMBYYw=";
   };
 
   buildInputs = [ blas lapack gmm fltk libjpeg zlib libGLU libGL
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "A three-dimensional finite element mesh generator";
-    homepage = "http://gmsh.info/";
+    homepage = "https://gmsh.info/";
     platforms = [ "x86_64-linux" ];
     license = lib.licenses.gpl2Plus;
   };