Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3465f3a4982b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dbfb3f7f62dd
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 8, 2019

  1. gmsh: 4.1.5 -> 4.2.1

    luzpaz committed Mar 8, 2019
    Copy the full SHA
    77cb537 View commit details
  2. Merge pull request #57069 from luzpaz/gmsh4.2.1

    gmsh: 4.1.5 -> 4.2.1
    Mic92 authored Mar 8, 2019
    Copy the full SHA
    dbfb3f7 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/science/math/gmsh/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/science/math/gmsh/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, fetchurl, cmake, openblasCompat, gfortran, gmm, fltk, libjpeg
, zlib, libGLU_combined, libGLU, xorg }:

let version = "4.1.5"; in
let version = "4.2.1"; in

stdenv.mkDerivation {
name = "gmsh-${version}";

src = fetchurl {
url = "http://gmsh.info/src/gmsh-${version}-source.tgz";
sha256 = "654d38203f76035a281006b77dcb838987a44fd549287f11c53a1e9cdf598f46";
sha256 = "1f11481e68900dc256f88aaed18d03e93b416ba01e9e8c3dc3f6d59a211f0561";
};

buildInputs = [ cmake openblasCompat gmm fltk libjpeg zlib libGLU_combined