35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ lib, stdenv, buildPackages, fetchurl, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kexec-tools";
|
|
version = "2.0.23";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"mirror://kernel/linux/utils/kernel/kexec/${pname}-${version}.tar.xz"
|
|
"http://horms.net/projects/kexec/kexec-tools/${pname}-${version}.tar.xz"
|
|
];
|
|
sha256 = "qmPNbH3ZWwbOumJAp/3GeSeJytp1plXmcUmHF1IkJBs=";
|
|
};
|
|
|
|
hardeningDisable = [ "format" "pic" "relro" "pie" ];
|
|
|
|
# Prevent kexec-tools from using uname to detect target, which is wrong in
|
|
# cases like compiling for aarch32 on aarch64
|
|
configurePlatforms = [ "build" "host" ];
|
|
configureFlags = [ "BUILD_CC=${buildPackages.stdenv.cc.targetPrefix}cc" ];
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
buildInputs = [ zlib ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://horms.net/projects/kexec/kexec-tools";
|
|
description = "Tools related to the kexec Linux feature";
|
|
platforms = platforms.linux;
|
|
badPlatforms = [
|
|
"riscv64-linux" "riscv32-linux"
|
|
"sparc-linux" "sparc64-linux"
|
|
];
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|