about summary refs log tree commit diff
path: root/pkgs/development/compilers/computecpp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/computecpp/default.nix')
-rw-r--r--pkgs/development/compilers/computecpp/default.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/pkgs/development/compilers/computecpp/default.nix b/pkgs/development/compilers/computecpp/default.nix
deleted file mode 100644
index 4e6e7ad43416..000000000000
--- a/pkgs/development/compilers/computecpp/default.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-{ lib, stdenv
-, fetchzip
-, pkg-config
-, autoPatchelfHook
-, installShellFiles
-, ocl-icd
-, zlib
-}:
-
-stdenv.mkDerivation rec {
-  pname = "computecpp";
-  version = "2.11.0";
-
-  src = fetchzip {
-    url = "https://computecpp.codeplay.com/downloads/computecpp-ce/${version}/x86_64-linux-gnu.tar.gz";
-    hash = "sha256-xHOPuijx5TZeHzRHPXcll0WqoBzHBryIoe3BnOxBVVY=";
-    stripRoot = true;
-  };
-
-  dontStrip = true;
-
-  buildInputs = [ stdenv.cc.cc.lib ocl-icd zlib ];
-  nativeBuildInputs = [ autoPatchelfHook pkg-config installShellFiles ];
-
-  installPhase = ''
-    runHook preInstall
-
-    find ./lib -type f -exec install -D -m 0755 {} -t $out/lib \;
-    find ./bin -type l -exec install -D -m 0755 {} -t $out/bin \;
-    find ./bin -type f -exec install -D -m 0755 {} -t $out/bin \;
-    find ./doc -type f -exec install -D -m 0644 {} -t $out/doc \;
-    find ./include -type f -exec install -D -m 0644 {} -t $out/include \;
-
-    runHook postInstall
-  '';
-
-  passthru = {
-    isClang = true;
-  };
-
-  meta = with lib; {
-    description =
-      "Accelerate Complex C++ Applications on Heterogeneous Compute Systems using Open Standards";
-    homepage = "https://www.codeplay.com/products/computesuite/computecpp";
-    license = licenses.unfree;
-    maintainers = with maintainers; [ davidtwco ];
-    platforms = [ "x86_64-linux" ];
-  };
-}