nixpkgs/pkgs/development/tools/misc/lsof/default.nix

65 lines
2.2 KiB
Nix
Raw Normal View History

2018-01-15 01:51:53 +01:00
{ stdenv, fetchurl, buildPackages, ncurses }:
2016-10-05 01:27:47 +02:00
2017-01-28 00:22:39 +01:00
let dialect = with stdenv.lib; last (splitString "-" stdenv.system); in
2015-07-15 21:25:21 +02:00
stdenv.mkDerivation rec {
name = "lsof-${version}";
version = "4.89";
2018-01-15 01:51:53 +01:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
2016-10-05 01:27:47 +02:00
buildInputs = [ ncurses ];
2016-10-04 15:37:35 +02:00
src = fetchurl {
2015-11-21 23:48:41 +01: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 ]
++ map (
# the tarball is moved after new version is released
isOld: "http://www.mirrorservice.org/sites/lsof.itap.purdue.edu/pub/tools/unix/lsof/"
+ "${stdenv.lib.optionalString isOld "OLD/"}lsof_${version}.tar.bz2"
) [ false true ]
;
2015-07-15 21:25:21 +02:00
sha256 = "061p18v0mhzq517791xkjs8a5dfynq1418a1mwxpji69zp2jzb41";
};
unpackPhase = "tar xvjf $src; cd lsof_*; tar xvf lsof_*.tar; sourceRoot=$( echo lsof_*/); ";
2017-01-28 00:22:39 +01:00
2016-10-04 15:37:35 +02:00
patches = [ ./dfile.patch ];
2018-01-14 08:38:17 +01:00
postPatch = stdenv.lib.optionalString stdenv.hostPlatform.isMusl ''
substituteInPlace dialects/linux/dlsof.h --replace "defined(__UCLIBC__)" 1
'';
2017-01-28 00:22:39 +01:00
# Stop build scripts from searching global include paths
LSOF_INCLUDE = "${stdenv.cc.libc}/include";
2018-01-15 01:51:53 +01:00
configurePhase = "LINUX_CONF_CC=$CC_FOR_BUILD LSOF_CC=$CC LSOF_AR=\"$AR cr\" LSOF_RANLIB=$RANLIB ./Configure -n ${dialect}";
2016-10-05 01:27:47 +02:00
preBuild = ''
sed -i Makefile -e 's/^CFGF=/& -DHASIPv6=1/;' -e 's/-lcurses/-lncurses/'
2017-01-28 00:22:39 +01:00
for filepath in $(find dialects/${dialect} -type f); do
sed -i "s,/usr/include,$LSOF_INCLUDE,g" $filepath
done
2016-10-05 01:27:47 +02:00
'';
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 = [ ];
2017-01-28 00:22:39 +01:00
platforms = stdenv.lib.platforms.unix;
};
}