2022-07-04 00:35:33 +02:00
|
|
|
{ lib, stdenv, buildPackages, fetchurl, fetchpatch, zlib }:
|
2013-09-11 15:51:02 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "kexec-tools";
|
2023-03-22 09:21:39 +01:00
|
|
|
version = "2.0.26";
|
2012-03-16 22:17:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-09 17:56:57 +01:00
|
|
|
urls = [
|
2019-08-15 14:41:18 +02:00
|
|
|
"mirror://kernel/linux/utils/kernel/kexec/${pname}-${version}.tar.xz"
|
|
|
|
"http://horms.net/projects/kexec/kexec-tools/${pname}-${version}.tar.xz"
|
2015-11-09 17:56:57 +01:00
|
|
|
];
|
2023-03-22 09:21:39 +01:00
|
|
|
sha256 = "sha256-f+NqBkEBzVxRXkGyvjk9zjyoitzlnW7maOCvfAxFcM0=";
|
2012-03-16 22:17:13 +01:00
|
|
|
};
|
|
|
|
|
2022-07-04 00:35:33 +02:00
|
|
|
patches = [
|
|
|
|
# Use ELFv2 ABI on ppc64be
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://raw.githubusercontent.com/void-linux/void-packages/6c1192cbf166698932030c2e3de71db1885a572d/srcpkgs/kexec-tools/patches/ppc64-elfv2.patch";
|
|
|
|
sha256 = "19wzfwb0azm932v0vhywv4221818qmlmvdfwpvvpfyw4hjsc2s1l";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-11-10 20:49:36 +01:00
|
|
|
hardeningDisable = [ "format" "pic" "relro" "pie" ];
|
2015-12-23 02:59:47 +01:00
|
|
|
|
2020-05-12 20:52:29 +02:00
|
|
|
# Prevent kexec-tools from using uname to detect target, which is wrong in
|
|
|
|
# cases like compiling for aarch32 on aarch64
|
|
|
|
configurePlatforms = [ "build" "host" ];
|
2017-12-10 06:22:19 +01:00
|
|
|
configureFlags = [ "BUILD_CC=${buildPackages.stdenv.cc.targetPrefix}cc" ];
|
2019-04-27 00:04:29 +02:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2013-09-11 15:51:02 +02:00
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://horms.net/projects/kexec/kexec-tools";
|
2013-09-11 15:51:02 +02:00
|
|
|
description = "Tools related to the kexec Linux feature";
|
2015-11-17 21:29:29 +01:00
|
|
|
platforms = platforms.linux;
|
2019-05-03 03:30:32 +02:00
|
|
|
badPlatforms = [
|
|
|
|
"riscv64-linux" "riscv32-linux"
|
|
|
|
"sparc-linux" "sparc64-linux"
|
|
|
|
];
|
2018-08-30 00:38:33 +02:00
|
|
|
license = licenses.gpl2;
|
2012-03-16 22:17:13 +01:00
|
|
|
};
|
|
|
|
}
|