2017-10-17 13:05:03 -07:00
|
|
|
{ stdenv, buildPackages, fetchurl, zlib }:
|
2013-09-11 06:51:02 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "kexec-tools";
|
2019-04-08 14:50:23 -07:00
|
|
|
version = "2.0.19";
|
2012-03-16 14:17:13 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-09 08:56:57 -08:00
|
|
|
urls = [
|
2019-08-15 05:41:18 -07: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 08:56:57 -08:00
|
|
|
];
|
2019-04-08 14:50:23 -07:00
|
|
|
sha256 = "03jyi4c47ywclycf3a253xpqs7p6ys8inz9q66b8m3xc6nrh307d";
|
2012-03-16 14:17:13 -07:00
|
|
|
};
|
|
|
|
|
2018-11-10 11:49:36 -08:00
|
|
|
hardeningDisable = [ "format" "pic" "relro" "pie" ];
|
2015-12-22 17:59:47 -08:00
|
|
|
|
2017-12-09 21:22:19 -08:00
|
|
|
configureFlags = [ "BUILD_CC=${buildPackages.stdenv.cc.targetPrefix}cc" ];
|
2019-04-26 15:04:29 -07:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2013-09-11 06:51:02 -07:00
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
2015-04-18 18:29:22 -07:00
|
|
|
meta = with stdenv.lib; {
|
2013-09-11 06:51:02 -07:00
|
|
|
homepage = http://horms.net/projects/kexec/kexec-tools;
|
|
|
|
description = "Tools related to the kexec Linux feature";
|
2015-11-17 12:29:29 -08:00
|
|
|
platforms = platforms.linux;
|
2019-05-02 18:30:32 -07:00
|
|
|
badPlatforms = [
|
|
|
|
"riscv64-linux" "riscv32-linux"
|
|
|
|
"sparc-linux" "sparc64-linux"
|
|
|
|
];
|
2018-08-29 15:38:33 -07:00
|
|
|
license = licenses.gpl2;
|
2012-03-16 14:17:13 -07:00
|
|
|
};
|
|
|
|
}
|