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

27 lines
524 B
Nix
Raw Normal View History

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