Adding kexectools.

svn path=/nixpkgs/trunk/; revision=33175
This commit is contained in:
Lluís Batlle i Rossell 2012-03-16 21:17:13 +00:00
parent 6b4810d310
commit ef1437585d
2 changed files with 19 additions and 0 deletions

View 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";
};
}

View File

@ -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 { };