My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/fwts/module.nix

31 lines
766 B

{ lib, stdenv, fwts, kernel }:
stdenv.mkDerivation rec {
pname = "fwts-efi-runtime";
version = "${fwts.version}-${kernel.version}";
inherit (fwts) src;
sourceRoot = "source/efi_runtime";
postPatch = ''
substituteInPlace Makefile --replace \
'/lib/modules/$(KVER)/build' \
'${kernel.dev}/lib/modules/${kernel.modDirVersion}/build'
'';
nativeBuildInputs = kernel.moduleBuildDependencies;
hardeningDisable = [ "pic" ];
makeFlags = kernel.makeFlags ++ [
"INSTALL_MOD_PATH=${placeholder "out"}"
];
meta = with lib; {
inherit (fwts.meta) homepage license;
description = fwts.meta.description + "(efi-runtime kernel module)";
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.linux;
};
}