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

27 lines
524 B
Nix
Raw Normal View History

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