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:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
fetchurl,
|
fetchFromGitLab,
|
||||||
cmake,
|
cmake,
|
||||||
gfortran,
|
gfortran,
|
||||||
blas,
|
blas,
|
||||||
@@ -14,12 +14,16 @@
|
|||||||
let
|
let
|
||||||
mpiSupport = petsc.passthru.mpiSupport;
|
mpiSupport = petsc.passthru.mpiSupport;
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation {
|
||||||
pname = "getdp";
|
pname = "getdp";
|
||||||
version = "3.6.0";
|
version = "3.6.0-unstable-2025-10-25";
|
||||||
src = fetchurl {
|
|
||||||
url = "http://getdp.info/src/getdp-${version}-source.tgz";
|
src = fetchFromGitLab {
|
||||||
hash = "sha256-nzefwCV+Z9BHDofuTfhR+vhqm3cCSiUT+7cbtn601N8=";
|
domain = "gitlab.onelab.info";
|
||||||
|
owner = "getdp";
|
||||||
|
repo = "getdp";
|
||||||
|
rev = "cac7f393ac34be1618b588083d2e391efd4976f7";
|
||||||
|
hash = "sha256-yiqi9Fb3UM81iJtpU+Mg71BB73injdkWCzbJGgor4ww=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@@ -35,7 +39,7 @@ stdenv.mkDerivation rec {
|
|||||||
++ lib.optional mpiSupport mpi;
|
++ lib.optional mpiSupport mpi;
|
||||||
cmakeFlags = lib.optional mpiSupport "-DENABLE_MPI=1";
|
cmakeFlags = lib.optional mpiSupport "-DENABLE_MPI=1";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "General Environment for the Treatment of Discrete Problems";
|
description = "General Environment for the Treatment of Discrete Problems";
|
||||||
mainProgram = "getdp";
|
mainProgram = "getdp";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@@ -46,8 +50,8 @@ stdenv.mkDerivation rec {
|
|||||||
symbolic mathematical expressions of these problems.
|
symbolic mathematical expressions of these problems.
|
||||||
'';
|
'';
|
||||||
homepage = "http://getdp.info/";
|
homepage = "http://getdp.info/";
|
||||||
license = licenses.gpl2Plus;
|
license = lib.licenses.gpl2Plus;
|
||||||
maintainers = [ ];
|
maintainers = with lib.maintainers; [ iedame ];
|
||||||
platforms = platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,11 +25,11 @@ assert (!blas.isILP64) && (!lapack.isILP64);
|
|||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "gmsh";
|
pname = "gmsh";
|
||||||
version = "4.14.0";
|
version = "4.15.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://gmsh.info/src/gmsh-${finalAttrs.version}-source.tgz";
|
url = "https://gmsh.info/src/gmsh-${finalAttrs.version}-source.tgz";
|
||||||
hash = "sha256-2019ogYumkNWqCCDITirmfl69jiL/rIVmaLq37C3aig=";
|
hash = "sha256-q7JjJxW9fQEw3tcUT9YmNjXNfeqIO432G6TaWM5qHf4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@@ -113,5 +113,6 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
homepage = "https://gmsh.info/";
|
homepage = "https://gmsh.info/";
|
||||||
changelog = "https://gitlab.onelab.info/gmsh/gmsh/-/releases/gmsh_${lib.concatStringsSep "_" (lib.versions.splitVersion finalAttrs.version)}#changelog";
|
changelog = "https://gitlab.onelab.info/gmsh/gmsh/-/releases/gmsh_${lib.concatStringsSep "_" (lib.versions.splitVersion finalAttrs.version)}#changelog";
|
||||||
license = lib.licenses.gpl2Plus;
|
license = lib.licenses.gpl2Plus;
|
||||||
|
maintainers = with lib.maintainers; [ iedame ];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user