2007-06-18 00:44:30 +02:00
|
|
|
{stdenv, fetchurl}:
|
2008-06-25 15:08:09 +02:00
|
|
|
|
2007-06-18 00:44:30 +02:00
|
|
|
stdenv.mkDerivation {
|
2010-08-30 01:22:26 +02:00
|
|
|
name = "lsof-4.84";
|
2007-06-18 00:34:44 +02:00
|
|
|
|
2007-06-18 00:44:30 +02:00
|
|
|
src = fetchurl {
|
2010-08-30 01:22:26 +02:00
|
|
|
url = ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_4.84.tar.bz2;
|
|
|
|
sha256 = "09f71lrwav31nay3c4nwyslm887psn95dw02jr8vlgs4kcnkm290";
|
2007-06-18 00:34:44 +02:00
|
|
|
};
|
|
|
|
|
2008-02-22 07:16:53 +01:00
|
|
|
unpackPhase = "tar xvjf $src; cd lsof_*; tar xvf lsof_*.tar; sourceRoot=$( echo lsof_*/); ";
|
2008-06-25 15:08:09 +02:00
|
|
|
|
2007-06-18 00:34:44 +02:00
|
|
|
preBuild = "sed -i Makefile -e 's/^CFGF=/& -DHASIPv6=1/;';";
|
2008-06-25 15:08:09 +02:00
|
|
|
|
2007-06-19 19:40:42 +02:00
|
|
|
configurePhase = "./Configure -n linux;";
|
2008-06-25 15:08:09 +02:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
ensureDir $out/bin $out/man/man8
|
|
|
|
cp lsof.8 $out/man/man8/
|
|
|
|
cp lsof $out/bin
|
|
|
|
'';
|
2007-06-26 13:49:45 +02:00
|
|
|
|
|
|
|
meta = {
|
2008-06-25 15:08:09 +02:00
|
|
|
homepage = ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/;
|
|
|
|
description = "A tool to list open files";
|
|
|
|
longDescription = ''
|
|
|
|
List open files. Can show what process has opened some file,
|
|
|
|
socket (IPv6/IPv4/UNIX local), or partition (by opening a file
|
|
|
|
from it).
|
|
|
|
'';
|
2007-06-26 13:49:45 +02:00
|
|
|
};
|
2007-06-18 00:34:44 +02:00
|
|
|
}
|