mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
1a06373c0a
Conflicts: pkgs/development/libraries/libclc/default.nix pkgs/top-level/all-packages.nix
38 lines
999 B
Nix
38 lines
999 B
Nix
{ stdenv, fetchFromGitHub, python, llvmPackages }:
|
|
|
|
let
|
|
llvm = llvmPackages.llvm;
|
|
clang = llvmPackages.clang;
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libclc-2017-11-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "llvm-mirror";
|
|
repo = "libclc";
|
|
rev = "d6384415ab854c68777dd77451aa2bc0d959da99";
|
|
sha256 = "10fqrlnqlknh58x7pfsbg9r07fblfg2mgq2m4fr1jbb836ncn3wh";
|
|
};
|
|
|
|
nativeBuildInputs = [ python ];
|
|
buildInputs = [ llvm clang ];
|
|
|
|
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 = ''
|
|
${python.interpreter} ./configure.py --prefix=$out
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://libclc.llvm.org/;
|
|
description = "Implementation of the library requirements of the OpenCL C programming language";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|