2013-09-11 13:51:02 +00:00
|
|
|
{ stdenv, fetchurl, zlib }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-07-03 02:28:43 +00:00
|
|
|
name = "kexec-tools-${version}";
|
2016-12-26 16:54:34 +00:00
|
|
|
version = "2.0.14";
|
2012-03-16 21:17:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-09 16:56:57 +00:00
|
|
|
urls = [
|
|
|
|
"mirror://kernel/linux/utils/kernel/kexec/${name}.tar.xz"
|
|
|
|
"http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz"
|
|
|
|
];
|
2016-12-26 16:54:34 +00:00
|
|
|
sha256 = "1ihd3kzw8xnc5skq4pb633rr80007knjm4n1dd67a24xkplygcpz";
|
2012-03-16 21:17:13 +00:00
|
|
|
};
|
|
|
|
|
2016-12-15 19:48:03 +00:00
|
|
|
hardeningDisable = [ "format" "pic" "relro" ];
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2013-09-11 13:51:02 +00:00
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
2015-04-19 01:29:22 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-09-11 13:51:02 +00:00
|
|
|
homepage = http://horms.net/projects/kexec/kexec-tools;
|
|
|
|
description = "Tools related to the kexec Linux feature";
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.linux;
|
2015-04-19 01:29:22 +00:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
2012-03-16 21:17:13 +00:00
|
|
|
};
|
|
|
|
}
|