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

This commit is contained in:
Atemu
2025-11-08 14:24:19 +00:00
committed by GitHub
2 changed files with 17 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
{
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;
};
}

View File

@@ -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 ];
};
})