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

26 lines
482 B
Nix
Raw Normal View History

{ lib
, stdenv
2017-09-16 01:38:38 +01:00
, 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 ];
meta = {
description = "Components required to build an executable OpenMP program";
homepage = "https://openmp.llvm.org/";
license = lib.licenses.mit;
platforms = lib.platforms.all;
2017-09-16 01:38:38 +01:00
};
}