Adding kexectools.
svn path=/nixpkgs/trunk/; revision=33175
This commit is contained in:
parent
6b4810d310
commit
ef1437585d
17
pkgs/os-specific/linux/kexectools/default.nix
Normal file
17
pkgs/os-specific/linux/kexectools/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ stdenv, fetchurl, zlib, xz}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "kexectools-2.0.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://horms.net/projects/kexec/kexec-tools/kexec-tools-2.0.3.tar.xz;
|
||||
sha256 = "1ac6szvm6pdhn5b8ba5l06rx09rylsqhgv1l6wmy4b5b1hrbip52";
|
||||
};
|
||||
|
||||
buildInputs = [ xz zlib ];
|
||||
|
||||
meta = {
|
||||
homepage = http://horms.net/projects/kexec/kexec-tools/;
|
||||
description = "Tools related to the kexec linux feature";
|
||||
};
|
||||
}
|
@ -915,6 +915,8 @@ let
|
||||
|
||||
jwhois = callPackage ../tools/networking/jwhois { };
|
||||
|
||||
kexectools = callPackage ../os-specific/linux/kexectools { };
|
||||
|
||||
keychain = callPackage ../tools/misc/keychain { };
|
||||
|
||||
kismet = callPackage ../applications/networking/sniffers/kismet { };
|
||||
|
Loading…
Reference in New Issue
Block a user