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

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

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

  buildInputs = [ zlib ];

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