nixpkgs/pkgs/os-specific/linux/kexec-tools/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, buildPackages, fetchurl, fetchpatch, zlib }:
2013-09-11 13:51:02 +00:00
stdenv.mkDerivation rec {
pname = "kexec-tools";
version = "2.0.26";
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 = "sha256-f+NqBkEBzVxRXkGyvjk9zjyoitzlnW7maOCvfAxFcM0=";
};
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";
})
];
hardeningDisable = [ "format" "pic" "relro" "pie" ];
2015-12-23 01:59:47 +00: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 05:22:19 +00:00
configureFlags = [ "BUILD_CC=${buildPackages.stdenv.cc.targetPrefix}cc" ];
depsBuildBuild = [ buildPackages.stdenv.cc ];
2013-09-11 13:51:02 +00:00
buildInputs = [ zlib ];
meta = with lib; {
homepage = "http://horms.net/projects/kexec/kexec-tools";
2013-09-11 13:51:02 +00:00
description = "Tools related to the kexec Linux feature";
platforms = platforms.linux;
2019-05-03 01:30:32 +00:00
badPlatforms = [
"riscv64-linux" "riscv32-linux"
"sparc-linux" "sparc64-linux"
];
2018-08-29 22:38:33 +00:00
license = licenses.gpl2;
};
}