2013-09-11 06:51:02 -07:00
|
|
|
{ stdenv, fetchurl, zlib }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-07-02 19:28:43 -07:00
|
|
|
name = "kexec-tools-${version}";
|
2016-12-26 08:54:34 -08:00
|
|
|
version = "2.0.14";
|
2012-03-16 14:17:13 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-09 08:56:57 -08:00
|
|
|
urls = [
|
|
|
|
"mirror://kernel/linux/utils/kernel/kexec/${name}.tar.xz"
|
|
|
|
"http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz"
|
|
|
|
];
|
2016-12-26 08:54:34 -08:00
|
|
|
sha256 = "1ihd3kzw8xnc5skq4pb633rr80007knjm4n1dd67a24xkplygcpz";
|
2012-03-16 14:17:13 -07:00
|
|
|
};
|
|
|
|
|
2016-12-15 11:48:03 -08:00
|
|
|
hardeningDisable = [ "format" "pic" "relro" ];
|
2015-12-22 17:59:47 -08:00
|
|
|
|
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;
|
2015-04-18 18:29:22 -07:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
2012-03-16 14:17:13 -07:00
|
|
|
};
|
|
|
|
}
|