summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kexectools/default.nix
blob: f26c72bd6e5b7d291bca722776d33e2f8327a0f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, zlib }:

stdenv.mkDerivation rec {
  name = "kexec-tools-2.0.9";

  src = fetchurl {
    url = "http://horms.net/projects/kexec/kexec-tools/${name}.tar.xz";
    sha256 = "0wag8pxn13i0j91x2bszpmi5i88xnndcmqz1w5a0jdbnxff4mqwa";
  };

  buildInputs = [ zlib ];

  meta = with stdenv.lib; {
    homepage = http://horms.net/projects/kexec/kexec-tools;
    description = "Tools related to the kexec Linux feature";
    platforms = with platforms; linux;
    maintainers = with maintainers; [ nckx ];
  };
}