b296895abe
Closes #2219, closes #2223 Signed-off-by: Austin Seipp <aseipp@pobox.com>
36 lines
987 B
Nix
36 lines
987 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "lsof-4.87";
|
|
|
|
src = fetchurl {
|
|
url = ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_4.87.tar.bz2;
|
|
sha256 = "0b6si72sml7gr9784ak491cxxbm9mx5bh174yg6rrirbv04kgpfz";
|
|
};
|
|
|
|
unpackPhase = "tar xvjf $src; cd lsof_*; tar xvf lsof_*.tar; sourceRoot=$( echo lsof_*/); ";
|
|
|
|
preBuild = "sed -i Makefile -e 's/^CFGF=/& -DHASIPv6=1/;';";
|
|
|
|
configurePhase = if stdenv.isDarwin
|
|
then "./Configure -n darwin;"
|
|
else "./Configure -n linux;";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/man/man8
|
|
cp lsof.8 $out/man/man8/
|
|
cp lsof $out/bin
|
|
'';
|
|
|
|
meta = {
|
|
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).
|
|
'';
|
|
maintainers = stdenv.lib.maintainers.mornfall;
|
|
};
|
|
}
|