summary refs log tree commit diff
path: root/pkgs/development/compilers/hipify/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/hipify/default.nix')
-rw-r--r--pkgs/development/compilers/hipify/default.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/pkgs/development/compilers/hipify/default.nix b/pkgs/development/compilers/hipify/default.nix
deleted file mode 100644
index 342e8e7e8bd..00000000000
--- a/pkgs/development/compilers/hipify/default.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, rocmUpdateScript
-, cmake
-, libxml2
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "hipify";
-  version = "5.4.2";
-
-  src = fetchFromGitHub {
-    owner = "ROCm-Developer-Tools";
-    repo = "HIPIFY";
-    rev = "rocm-${finalAttrs.version}";
-    hash = "sha256-EaHtI1ywjEHioWptuHvCllJ3dENtSClVoE6NpWTOa9I=";
-  };
-
-  nativeBuildInputs = [ cmake ];
-  buildInputs = [ libxml2 ];
-
-  postPatch = ''
-    substituteInPlace CMakeLists.txt \
-      --replace "\''${LLVM_TOOLS_BINARY_DIR}/clang" "${stdenv.cc}/bin/clang"
-  '';
-
-  passthru.updateScript = rocmUpdateScript {
-    name = finalAttrs.pname;
-    owner = finalAttrs.src.owner;
-    repo = finalAttrs.src.repo;
-  };
-
-  # Fixup weird install paths
-  postInstall = ''
-    mkdir -p $out/bin
-    mv $out/{*.sh,hipify-*} $out/bin
-    cp -afs $out/bin $out/hip
-  '';
-
-  meta = with lib; {
-    description = "Convert CUDA to Portable C++ Code";
-    homepage = "https://github.com/ROCm-Developer-Tools/HIPIFY";
-    license = with licenses; [ mit ];
-    maintainers = teams.rocm.members;
-    platforms = platforms.linux;
-    broken = versions.minor finalAttrs.version != versions.minor stdenv.cc.version;
-  };
-})