uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
58
pkgs/development/tools/misc/lsof/default.nix
Normal file
58
pkgs/development/tools/misc/lsof/default.nix
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
{ lib, stdenv, fetchFromGitHub, buildPackages, ncurses }:
|
||||
|
||||
let dialect = with lib; last (splitString "-" stdenv.hostPlatform.system); in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lsof";
|
||||
version = "4.94.0";
|
||||
|
||||
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lsof-org";
|
||||
repo = "lsof";
|
||||
rev = version;
|
||||
sha256 = "0yxv2jg6rnzys49lyrz9yjb4knamah4xvlqj596y6ix3vm4k3chp";
|
||||
};
|
||||
|
||||
patches = [ ./no-build-info.patch ];
|
||||
|
||||
postPatch = lib.optionalString stdenv.hostPlatform.isMusl ''
|
||||
substituteInPlace dialects/linux/dlsof.h --replace "defined(__UCLIBC__)" 1
|
||||
'' + lib.optionalString stdenv.isDarwin ''
|
||||
sed -i 's|lcurses|lncurses|g' Configure
|
||||
'';
|
||||
|
||||
# Stop build scripts from searching global include paths
|
||||
LSOF_INCLUDE = "${lib.getDev stdenv.cc.libc}/include";
|
||||
configurePhase = "LINUX_CONF_CC=$CC_FOR_BUILD LSOF_CC=$CC LSOF_AR=\"$AR cr\" LSOF_RANLIB=$RANLIB ./Configure -n ${dialect}";
|
||||
preBuild = ''
|
||||
for filepath in $(find dialects/${dialect} -type f); do
|
||||
sed -i "s,/usr/include,$LSOF_INCLUDE,g" $filepath
|
||||
done
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
# Fix references from man page https://github.com/lsof-org/lsof/issues/66
|
||||
substituteInPlace Lsof.8 \
|
||||
--replace ".so ./00DIALECTS" "" \
|
||||
--replace ".so ./version" ".ds VN ${version}"
|
||||
mkdir -p $out/bin $out/man/man8
|
||||
cp Lsof.8 $out/man/man8/lsof.8
|
||||
cp lsof $out/bin
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/lsof-org/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 = [ maintainers.dezgeg ];
|
||||
platforms = platforms.unix;
|
||||
license = licenses.purdueBsd;
|
||||
};
|
||||
}
|
||||
43
pkgs/development/tools/misc/lsof/no-build-info.patch
Normal file
43
pkgs/development/tools/misc/lsof/no-build-info.patch
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
diff -ru -x '*~' lsof_4.91_src-orig/usage.c lsof_4.91_src/usage.c
|
||||
--- lsof_4.91_src-orig/usage.c 2018-02-14 15:20:32.000000000 +0100
|
||||
+++ lsof_4.91_src/usage.c 2018-10-08 21:57:45.718560869 +0200
|
||||
@@ -930,26 +930,6 @@
|
||||
(void) fprintf(stderr, " configuration info: %s\n", cp);
|
||||
#endif /* defined(LSOF_CINFO) */
|
||||
|
||||
- if ((cp = isnullstr(LSOF_CCDATE)))
|
||||
- (void) fprintf(stderr, " constructed: %s\n", cp);
|
||||
- cp = isnullstr(LSOF_HOST);
|
||||
- if (!(cp1 = isnullstr(LSOF_LOGNAME)))
|
||||
- cp1 = isnullstr(LSOF_USER);
|
||||
- if (cp || cp1) {
|
||||
- if (cp && cp1)
|
||||
- cp2 = "by and on";
|
||||
- else if (cp)
|
||||
- cp2 = "on";
|
||||
- else
|
||||
- cp2 = "by";
|
||||
- (void) fprintf(stderr, " constructed %s: %s%s%s\n",
|
||||
- cp2,
|
||||
- cp1 ? cp1 : "",
|
||||
- (cp && cp1) ? "@" : "",
|
||||
- cp ? cp : ""
|
||||
- );
|
||||
- }
|
||||
-
|
||||
#if defined(LSOF_BLDCMT)
|
||||
if ((cp = isnullstr(LSOF_BLDCMT)))
|
||||
(void) fprintf(stderr, " builder's comment: %s\n", cp);
|
||||
@@ -959,12 +939,8 @@
|
||||
(void) fprintf(stderr, " compiler: %s\n", cp);
|
||||
if ((cp = isnullstr(LSOF_CCV)))
|
||||
(void) fprintf(stderr, " compiler version: %s\n", cp);
|
||||
- if ((cp = isnullstr(LSOF_CCFLAGS)))
|
||||
- (void) fprintf(stderr, " compiler flags: %s\n", cp);
|
||||
if ((cp = isnullstr(LSOF_LDFLAGS)))
|
||||
(void) fprintf(stderr, " loader flags: %s\n", cp);
|
||||
- if ((cp = isnullstr(LSOF_SYSINFO)))
|
||||
- (void) fprintf(stderr, " system info: %s\n", cp);
|
||||
(void) report_SECURITY(" ", ".\n");
|
||||
(void) report_WARNDEVACCESS(" ", "are", ".\n");
|
||||
(void) report_HASKERNIDCK(" K", "is");
|
||||
Loading…
Add table
Add a link
Reference in a new issue