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

20 lines
521 B
Nix
Raw Normal View History

2013-09-11 13:51:02 +00:00
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
2015-04-19 01:29:22 +00:00
name = "kexec-tools-2.0.9";
src = fetchurl {
2013-09-11 13:51:02 +00:00
url = "http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz";
2015-04-19 01:29:22 +00:00
sha256 = "0wag8pxn13i0j91x2bszpmi5i88xnndcmqz1w5a0jdbnxff4mqwa";
};
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-04-19 01:29:22 +00:00
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
}