27 lines
525 B
Nix
27 lines
525 B
Nix
|
{ stdenv
|
||
|
, fetch
|
||
|
, cmake
|
||
|
, llvm
|
||
|
, perl
|
||
|
, version
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "openmp";
|
||
|
inherit version;
|
||
|
|
||
|
src = fetch pname "1knafnpp0f7hylx8q20lkd6g1sf0flly572dayc5d5kghh7hd52w";
|
||
|
|
||
|
nativeBuildInputs = [ cmake perl ];
|
||
|
buildInputs = [ llvm ];
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
meta = {
|
||
|
description = "Components required to build an executable OpenMP program";
|
||
|
homepage = "https://openmp.llvm.org/";
|
||
|
license = stdenv.lib.licenses.mit;
|
||
|
platforms = stdenv.lib.platforms.all;
|
||
|
};
|
||
|
}
|