nixpkgs/pkgs/os-specific/linux/kexectools/default.nix

26 lines
671 B
Nix
Raw Normal View History

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