5105bf4b2e
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
26 lines
482 B
Nix
26 lines
482 B
Nix
{ lib
|
|
, stdenv
|
|
, fetch
|
|
, cmake
|
|
, llvm
|
|
, perl
|
|
, version
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "openmp";
|
|
inherit version;
|
|
|
|
src = fetch "openmp" "1dg53wzsci2kra8lh1y0chh60h2l8h1by93br5spzvzlxshkmrqy";
|
|
|
|
nativeBuildInputs = [ cmake perl ];
|
|
buildInputs = [ llvm ];
|
|
|
|
meta = {
|
|
description = "Components required to build an executable OpenMP program";
|
|
homepage = "https://openmp.llvm.org/";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|