46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ stdenv, fetchurl, which
|
|
, kmod, kernel
|
|
} :
|
|
|
|
let
|
|
version = "6.18";
|
|
in stdenv.mkDerivation {
|
|
name = "beegfs-module-${version}-${kernel.version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.beegfs.com/pub/v6/repository/archive.tar.bz2?ref=${version}";
|
|
sha256 = "1g874qyxh4v53ah3lzchrqi0jci7wngr54q3f4d9q0kzvvifripn";
|
|
};
|
|
|
|
hardeningDisable = [ "fortify" "pic" "stackprotector" ];
|
|
|
|
nativeBuildInputs = [ which kmod ];
|
|
|
|
buildInputs = kernel.moduleBuildDependencies;
|
|
|
|
makeFlags = [ "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build/" ];
|
|
|
|
postPatch = ''
|
|
patchShebangs ./
|
|
find -type f -name Makefile -exec sed -i "s:/bin/bash:${stdenv.shell}:" \{} \;
|
|
find -type f -name Makefile -exec sed -i "s:/bin/true:true:" \{} \;
|
|
find -type f -name "*.mk" -exec sed -i "s:/bin/true:true:" \{} \;
|
|
'';
|
|
|
|
preBuild = "cd beegfs_client_module/build";
|
|
|
|
installPhase = ''
|
|
instdir=$out/lib/modules/${kernel.modDirVersion}/extras/fs/beegfs
|
|
mkdir -p $instdir
|
|
cp beegfs.ko $instdir
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "High performance distributed filesystem with RDMA support";
|
|
homepage = "https://www.beegfs.io";
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
};
|
|
}
|