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

26 lines
483 B
Nix
Raw Normal View History

{ lib
, stdenv
2019-09-19 18:19:41 +00:00
, fetch
, cmake
, llvm
, perl
, version
}:
stdenv.mkDerivation rec {
2019-09-19 18:19:41 +00:00
pname = "openmp";
inherit version;
src = fetch pname "1knafnpp0f7hylx8q20lkd6g1sf0flly572dayc5d5kghh7hd52w";
2019-09-19 18:19:41 +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;
2019-09-19 18:19:41 +00:00
};
}