nixpkgs/pkgs/by-name/zl/zluda/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

97 lines
2.3 KiB
Nix

{
lib,
fetchFromGitHub,
rocmPackages,
python3,
cargo,
rustc,
cmake,
clang,
zlib,
libxml2,
libedit,
rustPlatform,
stdenv,
}:
rustPlatform.buildRustPackage rec {
pname = "zluda";
version = "3";
src = fetchFromGitHub {
owner = "vosen";
repo = "ZLUDA";
rev = "v${version}";
hash = "sha256-lykM18Ml1eeLMj/y6uPk34QOeh7Y59i1Y0Nr118Manw=";
fetchSubmodules = true;
};
buildInputs = [
rocmPackages.clr
rocmPackages.miopen
rocmPackages.rocm-smi
rocmPackages.rocsparse
rocmPackages.rocsolver
rocmPackages.rocblas
rocmPackages.hipblas
rocmPackages.rocm-cmake
rocmPackages.hipfft
zlib
libxml2
libedit
];
nativeBuildInputs = [
python3
cargo
rustc
cmake
clang
];
cargoHash = "sha256-gZdLThmaeWVJXoeG7fuusfacgH2RNTHrqm8W0kqkqOY=";
cargoLock.lockFile = ./Cargo.lock;
# xtask doesn't support passing --target, but nix hooks expect the folder structure from when it's set
env.CARGO_BUILD_TARGET = stdenv.hostPlatform.rust.cargoShortTarget;
# vergen panics if the .git directory isn't present
# Disable vergen and manually set env
postPatch = ''
substituteInPlace zluda/build.rs \
--replace-fail 'vergen(Config::default())' 'Some(())'
# ZLUDA repository missing Cargo.lock: vosen/ZLUDA#43
ln -s ${./Cargo.lock} Cargo.lock
'';
env.VERGEN_GIT_SHA = src.rev;
preConfigure = ''
# Comment out zluda_blaslt in Cargo.toml until hipBLASLt package is added: https://github.com/NixOS/nixpkgs/issues/197885#issuecomment-2046178008
sed -i '/zluda_blaslt/d' Cargo.toml
# disable test written for windows only: https://github.com/vosen/ZLUDA/blob/774f4bcb37c39f876caf80ae0d39420fa4bc1c8b/zluda_inject/tests/inject.rs#L55
rm zluda_inject/tests/inject.rs
'';
buildPhase = ''
runHook preBuild
cargo xtask --release
runHook postBuild
'';
preInstall = ''
mkdir -p $out/lib/
find target/release/ -maxdepth 1 -type l -name '*.so*' -exec \
cp --recursive --no-clobber --target-directory=$out/lib/ {} +
'';
meta = {
description = "ZLUDA - CUDA on Intel GPUs";
homepage = "https://github.com/vosen/ZLUDA";
changelog = "https://github.com/vosen/ZLUDA/releases/tag/${src.rev}";
license = lib.licenses.mit;
maintainers = [
lib.maintainers.errnoh
];
};
}