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

27 lines
524 B
Nix
Raw Normal View History

2018-01-31 15:09:24 +01:00
{ stdenv
, fetch
, cmake
, llvm
, perl
, version
}:
stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "openmp";
inherit version;
2018-01-31 15:09:24 +01:00
2018-06-28 22:58:05 +02:00
src = fetch "openmp" "0nhwfba9c351r16zgyjyfwdayr98nairky3c2f0b2lc360mwmbv6";
2018-01-31 15:09:24 +01:00
nativeBuildInputs = [ cmake perl ];
buildInputs = [ llvm ];
enableParallelBuilding = true;
meta = {
description = "Components required to build an executable OpenMP program";
homepage = "https://openmp.llvm.org/";
2018-01-31 15:09:24 +01:00
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
};
}