Unverified Commit adc35d93 authored by Atemu's avatar Atemu Committed by GitHub
Browse files

getdp: 3.6.0 -> 3.6.0-unstable-2025-10-25, gmsh: 4.14.0 -> 4.15.0, adopt (#458308)

parents 05528184 e1b83448
Loading
Loading
Loading
Loading
+14 −10
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchurl,
  fetchFromGitLab,
  cmake,
  gfortran,
  blas,
@@ -14,12 +14,16 @@
let
  mpiSupport = petsc.passthru.mpiSupport;
in
stdenv.mkDerivation rec {
stdenv.mkDerivation {
  pname = "getdp";
  version = "3.6.0";
  src = fetchurl {
    url = "http://getdp.info/src/getdp-${version}-source.tgz";
    hash = "sha256-nzefwCV+Z9BHDofuTfhR+vhqm3cCSiUT+7cbtn601N8=";
  version = "3.6.0-unstable-2025-10-25";

  src = fetchFromGitLab {
    domain = "gitlab.onelab.info";
    owner = "getdp";
    repo = "getdp";
    rev = "cac7f393ac34be1618b588083d2e391efd4976f7";
    hash = "sha256-yiqi9Fb3UM81iJtpU+Mg71BB73injdkWCzbJGgor4ww=";
  };

  nativeBuildInputs = [
@@ -35,7 +39,7 @@ stdenv.mkDerivation rec {
  ++ lib.optional mpiSupport mpi;
  cmakeFlags = lib.optional mpiSupport "-DENABLE_MPI=1";

  meta = with lib; {
  meta = {
    description = "General Environment for the Treatment of Discrete Problems";
    mainProgram = "getdp";
    longDescription = ''
@@ -46,8 +50,8 @@ stdenv.mkDerivation rec {
      symbolic mathematical expressions of these problems.
    '';
    homepage = "http://getdp.info/";
    license = licenses.gpl2Plus;
    maintainers = [ ];
    platforms = platforms.linux;
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ iedame ];
    platforms = lib.platforms.linux;
  };
}
+3 −2
Original line number Diff line number Diff line
@@ -25,11 +25,11 @@ assert (!blas.isILP64) && (!lapack.isILP64);

stdenv.mkDerivation (finalAttrs: {
  pname = "gmsh";
  version = "4.14.0";
  version = "4.15.0";

  src = fetchurl {
    url = "https://gmsh.info/src/gmsh-${finalAttrs.version}-source.tgz";
    hash = "sha256-2019ogYumkNWqCCDITirmfl69jiL/rIVmaLq37C3aig=";
    hash = "sha256-q7JjJxW9fQEw3tcUT9YmNjXNfeqIO432G6TaWM5qHf4=";
  };

  nativeBuildInputs = [
@@ -113,5 +113,6 @@ stdenv.mkDerivation (finalAttrs: {
    homepage = "https://gmsh.info/";
    changelog = "https://gitlab.onelab.info/gmsh/gmsh/-/releases/gmsh_${lib.concatStringsSep "_" (lib.versions.splitVersion finalAttrs.version)}#changelog";
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ iedame ];
  };
})