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: af940c1f87fe
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5bbc9be100f6
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 7, 2019

  1. 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
    r-ryantm authored and c0bw3b committed Jun 7, 2019
    Copy the full SHA
    5bbc9be View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/science/math/gmsh/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/science/math/gmsh/default.nix
Original file line number Diff line number Diff line change
@@ -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;