nixpkgs/pkgs/development/compilers/llvm/9/openmp.nix

27 lines
525 B
Nix
Raw Normal View History

2019-09-19 19:19:41 +01:00
{ stdenv
, fetch
, cmake
, llvm
, perl
, version
}:
stdenv.mkDerivation rec {
2019-09-19 19:19:41 +01:00
pname = "openmp";
inherit version;
src = fetch pname "1knafnpp0f7hylx8q20lkd6g1sf0flly572dayc5d5kghh7hd52w";
2019-09-19 19:19:41 +01:00
nativeBuildInputs = [ cmake perl ];
buildInputs = [ llvm ];
enableParallelBuilding = true;
meta = {
description = "Components required to build an executable OpenMP program";
homepage = "https://openmp.llvm.org/";
2019-09-19 19:19:41 +01:00
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
};
}