forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, git, gfortran, openmpi, blas, liblapack, qt4, qwt6_qt4, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elmerfem";
|
|
version = "8.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elmercsc";
|
|
repo = "elmerfem";
|
|
rev = "release-${version}";
|
|
sha256 = "0vk31lplxlng173q8jjcpbyj1gaf98jvkqjvi9077d1nslya7vpm";
|
|
};
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config git ];
|
|
buildInputs = [ gfortran openmpi blas liblapack qt4 qwt6_qt4 ];
|
|
|
|
preConfigure = ''
|
|
patchShebangs ./
|
|
'';
|
|
|
|
storepath = placeholder "out";
|
|
|
|
cmakeFlags = [
|
|
"-DELMER_INSTALL_LIB_DIR=${storepath}/lib"
|
|
"-DWITH_OpenMP:BOOLEAN=TRUE"
|
|
"-DWITH_MPI:BOOLEAN=TRUE"
|
|
"-DWITH_ELMERGUI:BOOLEAN=TRUE"
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
|
"-DCMAKE_OpenGL_GL_PREFERENCE=GLVND"
|
|
];
|
|
|
|
patches = [
|
|
./fix-cmake.patch
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://elmerfem.org/";
|
|
description = "A finite element software for multiphysical problems";
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.wulfsta ];
|
|
license = licenses.lgpl21;
|
|
};
|
|
|
|
}
|