2021-01-24 01:31:45 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-08-25 19:29:57 +02:00
|
|
|
, fetch
|
|
|
|
, cmake
|
|
|
|
, llvm
|
|
|
|
, perl
|
|
|
|
, version
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "openmp";
|
|
|
|
inherit version;
|
|
|
|
|
2020-11-29 21:30:37 +01:00
|
|
|
src = fetch pname "19rcv25y41ww3zlfg0lwprzijl3cn7jgc0v5540jzpp7j0ds45ad";
|
2020-08-25 19:29:57 +02:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake perl ];
|
|
|
|
buildInputs = [ llvm ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Components required to build an executable OpenMP program";
|
|
|
|
homepage = "https://openmp.llvm.org/";
|
2021-01-22 12:25:31 +01:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.all;
|
2020-08-25 19:29:57 +02:00
|
|
|
};
|
|
|
|
}
|