2015-07-15 19:25:21 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2008-06-25 13:08:09 +00:00
|
|
|
|
2015-07-15 19:25:21 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lsof-${version}";
|
|
|
|
version = "4.89";
|
2007-06-17 22:34:44 +00:00
|
|
|
|
2007-06-17 22:44:30 +00:00
|
|
|
src = fetchurl {
|
2015-11-21 22:48:41 +00:00
|
|
|
urls =
|
|
|
|
["ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_${version}.tar.bz2"]
|
|
|
|
++ map (
|
|
|
|
# the tarball is moved after new version is released
|
|
|
|
isOld: "ftp://sunsite.ualberta.ca/pub/Mirror/lsof/"
|
|
|
|
+ "${stdenv.lib.optionalString isOld "OLD/"}lsof_${version}.tar.bz2"
|
|
|
|
) [ false true ];
|
2015-07-15 19:25:21 +00:00
|
|
|
sha256 = "061p18v0mhzq517791xkjs8a5dfynq1418a1mwxpji69zp2jzb41";
|
2007-06-17 22:34:44 +00:00
|
|
|
};
|
|
|
|
|
2008-02-22 06:16:53 +00:00
|
|
|
unpackPhase = "tar xvjf $src; cd lsof_*; tar xvf lsof_*.tar; sourceRoot=$( echo lsof_*/); ";
|
2008-06-25 13:08:09 +00:00
|
|
|
|
2007-06-17 22:34:44 +00:00
|
|
|
preBuild = "sed -i Makefile -e 's/^CFGF=/& -DHASIPv6=1/;';";
|
2008-06-25 13:08:09 +00:00
|
|
|
|
2014-04-12 16:05:25 +00:00
|
|
|
configurePhase = if stdenv.isDarwin
|
|
|
|
then "./Configure -n darwin;"
|
|
|
|
else "./Configure -n linux;";
|
2008-06-25 13:08:09 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/bin $out/man/man8
|
2008-06-25 13:08:09 +00:00
|
|
|
cp lsof.8 $out/man/man8/
|
|
|
|
cp lsof $out/bin
|
|
|
|
'';
|
2007-06-26 11:49:45 +00:00
|
|
|
|
|
|
|
meta = {
|
2008-06-25 13:08:09 +00: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).
|
|
|
|
'';
|
2014-09-13 11:51:39 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.mornfall ];
|
2007-06-26 11:49:45 +00:00
|
|
|
};
|
2007-06-17 22:34:44 +00:00
|
|
|
}
|