mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
68 lines
1.7 KiB
Nix
68 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rocmUpdateScript
|
|
, cmake
|
|
, rocm-cmake
|
|
, gfortran
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "hipfort";
|
|
version = "5.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ROCm";
|
|
repo = "hipfort";
|
|
rev = "rocm-${finalAttrs.version}";
|
|
hash = "sha256-DRjUWhdinDKP7CZgq2SmU3lGmmodCuXvco9aEeMLSZ4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
rocm-cmake
|
|
gfortran
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DHIPFORT_COMPILER=${gfortran}/bin/gfortran"
|
|
"-DHIPFORT_AR=${gfortran.cc}/bin/gcc-ar"
|
|
"-DHIPFORT_RANLIB=${gfortran.cc}/bin/gcc-ranlib"
|
|
# Manually define CMAKE_INSTALL_<DIR>
|
|
# See: https://github.com/NixOS/nixpkgs/pull/197838
|
|
"-DCMAKE_INSTALL_BINDIR=bin"
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs bin
|
|
|
|
substituteInPlace bin/hipfc bin/mymcpu \
|
|
--replace "/bin/cat" "cat"
|
|
|
|
substituteInPlace bin/CMakeLists.txt \
|
|
--replace "/bin/mkdir" "mkdir" \
|
|
--replace "/bin/cp" "cp" \
|
|
--replace "/bin/sed" "sed" \
|
|
--replace "/bin/chmod" "chmod" \
|
|
--replace "/bin/ln" "ln"
|
|
'';
|
|
|
|
passthru.updateScript = rocmUpdateScript {
|
|
name = finalAttrs.pname;
|
|
owner = finalAttrs.src.owner;
|
|
repo = finalAttrs.src.repo;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Fortran interfaces for ROCm libraries";
|
|
mainProgram = "hipfc";
|
|
homepage = "https://github.com/ROCm/hipfort";
|
|
license = with licenses; [ mit ]; # mitx11
|
|
maintainers = teams.rocm.members;
|
|
platforms = platforms.linux;
|
|
broken = versions.minor finalAttrs.version != versions.minor stdenv.cc.version || versionAtLeast finalAttrs.version "6.0.0";
|
|
};
|
|
})
|