1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/libclc/default.nix

33 lines
926 B
Nix
Raw Normal View History

2018-02-12 19:40:18 +00:00
{ stdenv, fetchFromGitHub, python, llvm, clang }:
2015-03-28 20:54:27 +00:00
stdenv.mkDerivation {
2017-02-28 15:33:17 +00:00
name = "libclc-2017-02-25";
2015-03-28 20:54:27 +00:00
2015-05-13 14:32:32 +01:00
src = fetchFromGitHub {
owner = "llvm-mirror";
repo = "libclc";
2017-02-28 15:33:17 +00:00
rev = "17648cd846390e294feafef21c32c7106eac1e24";
sha256 = "1c20jyh3sdwd9r37zs4vvppmsx8vhf2xbx0cxsrc27bhx5245p0s";
2015-03-28 20:54:27 +00:00
};
2018-02-12 19:40:18 +00:00
nativeBuildInputs = [ python ];
buildInputs = [ llvm ];
2015-03-28 20:54:27 +00:00
postPatch = ''
sed -i 's,llvm_clang =.*,llvm_clang = "${clang}/bin/clang",' configure.py
sed -i 's,cxx_compiler =.*,cxx_compiler = "${clang}/bin/clang++",' configure.py
'';
configurePhase = ''
2018-02-12 19:40:18 +00:00
${python.interpreter} ./configure.py --prefix=$out
2015-03-28 20:54:27 +00:00
'';
meta = with stdenv.lib; {
homepage = http://libclc.llvm.org/;
2015-05-13 14:32:32 +01:00
description = "Implementation of the library requirements of the OpenCL C programming language";
2015-03-28 20:54:27 +00:00
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}