2015-07-15 12:25:21 -07:00
|
|
|
{ stdenv, fetchurl }:
|
2008-06-25 06:08:09 -07:00
|
|
|
|
2015-07-15 12:25:21 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lsof-${version}";
|
|
|
|
version = "4.89";
|
2007-06-17 15:34:44 -07:00
|
|
|
|
2007-06-17 15:44:30 -07:00
|
|
|
src = fetchurl {
|
2015-11-21 14:48:41 -08: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 12:25:21 -07:00
|
|
|
sha256 = "061p18v0mhzq517791xkjs8a5dfynq1418a1mwxpji69zp2jzb41";
|
2007-06-17 15:34:44 -07:00
|
|
|
};
|
|
|
|
|
2008-02-21 22:16:53 -08:00
|
|
|
unpackPhase = "tar xvjf $src; cd lsof_*; tar xvf lsof_*.tar; sourceRoot=$( echo lsof_*/); ";
|
2016-04-25 09:14:22 -07:00
|
|
|
|
2007-06-17 15:34:44 -07:00
|
|
|
preBuild = "sed -i Makefile -e 's/^CFGF=/& -DHASIPv6=1/;';";
|
2016-04-25 09:14:22 -07:00
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
# Stop build scripts from searching global include paths
|
|
|
|
export LSOF_INCLUDE=/$(md5sum <(echo $name) | awk '{print $1}')
|
|
|
|
./Configure -n ${if stdenv.isDarwin then "darwin" else "linux"}
|
|
|
|
'';
|
|
|
|
|
2008-06-25 06:08:09 -07:00
|
|
|
installPhase = ''
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/bin $out/man/man8
|
2008-06-25 06:08:09 -07:00
|
|
|
cp lsof.8 $out/man/man8/
|
|
|
|
cp lsof $out/bin
|
|
|
|
'';
|
2007-06-26 04:49:45 -07:00
|
|
|
|
|
|
|
meta = {
|
2008-06-25 06:08:09 -07: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 04:51:39 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.mornfall ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2007-06-26 04:49:45 -07:00
|
|
|
};
|
2007-06-17 15:34:44 -07:00
|
|
|
}
|