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

26 lines
482 B
Nix
Raw Normal View History

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