![aleksana](/assets/img/avatar_default.png)
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
35 lines
1.2 KiB
Nix
35 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, cmake, gfortran, blas, lapack, mpi, petsc, python3 }:
|
|
|
|
let
|
|
mpiSupport = petsc.passthru.mpiSupport;
|
|
in stdenv.mkDerivation rec {
|
|
pname = "getdp";
|
|
version = "3.6.0";
|
|
src = fetchurl {
|
|
url = "http://getdp.info/src/getdp-${version}-source.tgz";
|
|
hash = "sha256-nzefwCV+Z9BHDofuTfhR+vhqm3cCSiUT+7cbtn601N8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake python3 ];
|
|
buildInputs = [ gfortran blas lapack petsc ]
|
|
++ lib.optional mpiSupport mpi
|
|
;
|
|
cmakeFlags = lib.optional mpiSupport "-DENABLE_MPI=1";
|
|
|
|
meta = with lib; {
|
|
description = "General Environment for the Treatment of Discrete Problems";
|
|
mainProgram = "getdp";
|
|
longDescription = ''
|
|
GetDP is a free finite element solver using mixed elements to discretize
|
|
de Rham-type complexes in one, two and three dimensions. The main
|
|
feature of GetDP is the closeness between the input data defining
|
|
discrete problems (written by the user in ASCII data files) and the
|
|
symbolic mathematical expressions of these problems.
|
|
'';
|
|
homepage = "http://getdp.info/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|