nixpkgs-suyu/pkgs/development/compilers/llvm/7/openmp.nix

27 lines
521 B
Nix
Raw Normal View History

{ stdenv
, fetch
, cmake
, llvm
, perl
, version
}:
stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "openmp";
inherit version;
2019-04-23 07:30:45 +02:00
src = fetch "openmp" "1dg53wzsci2kra8lh1y0chh60h2l8h1by93br5spzvzlxshkmrqy";
nativeBuildInputs = [ cmake perl ];
buildInputs = [ llvm ];
enableParallelBuilding = true;
meta = {
description = "Components required to build an executable OpenMP program";
homepage = http://openmp.llvm.org/;
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
};
}